diff options
Diffstat (limited to 'test/res/test.lisp')
-rw-r--r-- | test/res/test.lisp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/res/test.lisp b/test/res/test.lisp index cc20808..79c96dc 100644 --- a/test/res/test.lisp +++ b/test/res/test.lisp @@ -3,6 +3,10 @@ (myfun :myfunworks) ((lambda (a) (debuglog a)) :atom) (debuglog a) +(defun testlog (a ...) (seq + (debuglog "a" a) + (debuglog "..." ...))) +(testlog :test :work :whatever) (def helloworld (pure "hello world")) (debuglog helloworld (helloworld)) (debuglog "+" (+ 1.2 15)) |