shithub: martian9

ref: 0560b9b189c123d48e91231a3adf15016c0a49d9
dir: /tests/test-macro.scm/

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

(and #t)