~/testing$ cat test.scm<br>(define-macro (foo x) `(list ,x ,x))<br>~/testing$ gsc<br>Gambit v4.4.2<br><br>> (include "test.scm")<br>> (foo 2)<br>(2 2)<br>> <br>*** EOF again to exit<br>~/testing$ gsc -:dar -e '(load "~~/lib/modules/build")' -<br>
> (include "test.scm")<br>> (foo 2)<br>*** ERROR IN (console)@2.2 -- Unbound variable: ~#foo<br>1> <br>> (define-macro (foo x) `(list ,x ,x))<br>> (foo 2)<br>(2 2)<br>> <br>*** EOF again to exit<br>
~/testing$ <br><br><br>okay ... so under gsc, my macro works<br>under bsc, it does not<br>yet if I manually type it into bsc, it works<br><br>what's going on here? :-)<br>