diff options
Diffstat (limited to 'test/res')
-rw-r--r-- | test/res/test.lisp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/res/test.lisp b/test/res/test.lisp index 79c96dc..edadffd 100644 --- a/test/res/test.lisp +++ b/test/res/test.lisp @@ -3,6 +3,9 @@ (myfun :myfunworks) ((lambda (a) (debuglog a)) :atom) (debuglog a) +(defun testsomething (c) (debuglog (if c "truthy value" "falsey value"))) +(testsomething true) +(testsomething false) (defun testlog (a ...) (seq (debuglog "a" a) (debuglog "..." ...))) |