From fc3911c68a4a8a0ff916b858e5fe029ed2ebe493 Mon Sep 17 00:00:00 2001 From: nea Date: Wed, 9 Aug 2023 17:29:32 +0200 Subject: Add more arithmetic operations --- test/res/test.lisp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'test') 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)) -- cgit