/ Published in: Scheme
Expand |
Embed | Plain Text
(define-macro (p r . otherstuff) `(if (null? (list ,@otherstuff)) (print ,r) (print ,@otherstuff))) (p 'c 'ciao)
You need to login to post a comment.
magicrebirth on 12/12/09
textmate procedure scheme argument optionalargument
(define-macro (p r . otherstuff) `(if (null? (list ,@otherstuff)) (print ,r) (print ,@otherstuff))) (p 'c 'ciao)
You need to login to post a comment.