Hi all,
The following program runs correctly in the interpreter, but fails when run with a generated executable.
(define-syntax foo (syntax-rules () ((_) "hi!\n"))) (display (eval '(foo)))
Running the generated executable fails with "*** ERROR -- Unbound variable: foo".
Am I doing something wrong?