Re: Module reflection and the list of bound symbols

2012-09-28 Thread Thien-Thi Nguyen
() Panicz Maciej Godek () Fri, 28 Sep 2012 19:37:17 +0200 (Or maybe I just overlooked something, and they are already available?) Check out ‘(ice-9 session) apropos’ to see what it does. In Guile 1.4, one of its subroutines: (define apropos-fold-exported (make-fold-modules root-modules

Re: Expanding macros

2012-09-28 Thread Panicz Maciej Godek
Bonjour, > There’s the ,expand command at the REPL. > > It’s implemented like this: > > (define (repl-expand repl form) > (let ((from (repl-language repl)) > (opts (repl-compile-options repl))) > (decompile (compile form #:from from #:to 'tree-il #:opts opts >