summaryrefslogtreecommitdiff
path: root/test/res/test.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'test/res/test.lisp')
-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))