/ Published in: Scheme
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
(define-macro (p r . otherstuff) `(if (null? (list ,@otherstuff)) (print ,r) (print ,@otherstuff))) (p 'c 'ciao)