diff options
author | nea <nea@nea.moe> | 2023-08-09 17:29:32 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-09 17:29:32 +0200 |
commit | fc3911c68a4a8a0ff916b858e5fe029ed2ebe493 (patch) | |
tree | 99dc8aa63882ee0f4299a095b8394cc9e0821e09 /test/res/test.lisp | |
parent | f3600dacea3e38cd541bf57076f8a7141987e10b (diff) | |
download | nealisp-fc3911c68a4a8a0ff916b858e5fe029ed2ebe493.tar.gz nealisp-fc3911c68a4a8a0ff916b858e5fe029ed2ebe493.tar.bz2 nealisp-fc3911c68a4a8a0ff916b858e5fe029ed2ebe493.zip |
Add more arithmetic operations
Diffstat (limited to 'test/res/test.lisp')
-rw-r--r-- | test/res/test.lisp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/res/test.lisp b/test/res/test.lisp index 06e9f43..cc20808 100644 --- a/test/res/test.lisp +++ b/test/res/test.lisp @@ -5,4 +5,7 @@ (debuglog a) (def helloworld (pure "hello world")) (debuglog helloworld (helloworld)) -(debuglog + (+ 1.2 15)) +(debuglog "+" (+ 1.2 15)) +(debuglog "-" (- 1 3)) +(debuglog "*" (* 10 10)) +(debuglog "/" (/ 1 3 2)) |