Marco Maggi wrote:

> ...  in CHICKEN  5.0.0  or in  a  future release?   I  can find  nothing
> relevant on the CHICKEN Wiki.  Here what they should do:

> <http://marcomaggi.github.io/docs/vicare-scheme.html/iklib-expander-etv.html>

> it would open a can of worms^H^H^H^H^H possibilities.

Lame self reply.  I see I can do something similar with:

   (define-for-syntax ciao (list 1 2 3))

   (define-syntax hello
     (ir-macro-transformer
       (lambda (input x y)
         (let ((it (cadr input)))
        (pretty-print (eval it))
        1))))
   
   (hello ciao)

but EVAL uses are ugly (and dangerous).
-- 
Marco Maggi

_______________________________________________
Chicken-users mailing list
Chicken-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/chicken-users

Reply via email to