summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-08-09 17:29:32 +0200
committernea <nea@nea.moe>2023-08-09 17:29:32 +0200
commitfc3911c68a4a8a0ff916b858e5fe029ed2ebe493 (patch)
tree99dc8aa63882ee0f4299a095b8394cc9e0821e09 /test
parentf3600dacea3e38cd541bf57076f8a7141987e10b (diff)
downloadnealisp-fc3911c68a4a8a0ff916b858e5fe029ed2ebe493.tar.gz
nealisp-fc3911c68a4a8a0ff916b858e5fe029ed2ebe493.tar.bz2
nealisp-fc3911c68a4a8a0ff916b858e5fe029ed2ebe493.zip
Add more arithmetic operations
Diffstat (limited to 'test')
-rw-r--r--test/res/test.lisp5
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))