commit | bed809264fc3b8df676b896a04b620182d3a4ed2 | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Tue Apr 13 21:58:05 2021 -0700 |
committer | swissChili <swisschili@fastmail.com> | Tue Apr 13 21:58:05 2021 -0700 |
tree | 8202153f133db3a911863f06df53c04ffac0acab | |
parent | 7a6f5eb6f0a93e908ef65b7b38de2d0b86956807 [diff] [blame] |
Finish basics of Lisp parser, add simple test
diff --git a/src/lisp/test.lisp b/src/lisp/test.lisp new file mode 100644 index 0000000..ee6773e --- /dev/null +++ b/src/lisp/test.lisp
@@ -0,0 +1,2 @@ +(defun my-fun (a b) + (display t "%a\n" (+ a b)))