shithub: martian9

Download patch

ref: bdb99b496ec68880effa7df50fb4b05e7c1799bc
parent: 465362387ca57cd00f2b4be4f4a9c75b6c15d793
author: McKay Marston <mckay.marston@greymanlabs.com>
date: Thu Dec 31 06:41:48 EST 2020

added first test (to help with macro handling)

diff: cannot open b/tests//null: file does not exist: 'b/tests//null'
--- /dev/null
+++ b/tests/test-macro.scm
@@ -1,0 +1,7 @@
+(define-syntax and (syntax-rules ()
+  ((_) #t)
+  ((_ test) test)
+  ((_ test1 test2 ...)
+    (if test1 (_ test2 ...) #f))))
+
+(and #t)