Re: [Chicken-users] Macros not found when using eval

2017-08-14 Thread Evan Hanson
Hi mel, You can use the "-compile-syntax" flag with csc(1), which will include the macro definition in the compiled code and thus make it available at runtime. Let us know how that works out. As for your second question, it's tough to say much without an example, but I'm guessing you're looking

[Chicken-users] Macros not found when using eval

2017-08-13 Thread mel aise
Hello! I'm having some trouble with the following program: (define-syntax kons (syntax-rules () ((_ a b) (cons a b (display (kons 1 '(2 3))) (newline) (display (eval '(kons 1 '(2 3 (newline) (It's a contrived example but gets to whats going on haha) When run with csi everythi