shithub: martian9

ref: 4f535f4a39ed10d5aef7a2f568c02fa3b40775ff
dir: /tests/test-macro.scm/

View raw version
(define-syntax and (syntax-rules ()
  ((_) #t)
  ((_ test) test)
  ((_ test1 test2 ...)
    (if test1 (_ test2 ...) #f))))

(and #t)