ref: bdb99b496ec68880effa7df50fb4b05e7c1799bc dir: /tests/test-macro.scm/
(define-syntax and (syntax-rules () ((_) #t) ((_ test) test) ((_ test1 test2 ...) (if test1 (_ test2 ...) #f)))) (and #t)