diff options
author | nea <nea@nea.moe> | 2023-08-09 17:05:46 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-09 17:05:46 +0200 |
commit | f3600dacea3e38cd541bf57076f8a7141987e10b (patch) | |
tree | c22645458e388a39a8d3a1e77cb261b4b69c1db2 /test | |
parent | b530d6360308ac1f68cf2508fa5bd4a085a8bec0 (diff) | |
download | nealisp-f3600dacea3e38cd541bf57076f8a7141987e10b.tar.gz nealisp-f3600dacea3e38cd541bf57076f8a7141987e10b.tar.bz2 nealisp-f3600dacea3e38cd541bf57076f8a7141987e10b.zip |
Add addition
Diffstat (limited to 'test')
-rw-r--r-- | test/res/test.lisp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/res/test.lisp b/test/res/test.lisp index f3d21d9..06e9f43 100644 --- a/test/res/test.lisp +++ b/test/res/test.lisp @@ -5,7 +5,4 @@ (debuglog a) (def helloworld (pure "hello world")) (debuglog helloworld (helloworld)) -(defun + () (seq - (debuglog "also multiplication") - (debuglog "addition"))) -(debuglog +) +(debuglog + (+ 1.2 15)) |