summaryrefslogtreecommitdiff
path: root/test/res
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-08-09 16:18:48 +0200
committernea <nea@nea.moe>2023-08-09 16:18:48 +0200
commitb530d6360308ac1f68cf2508fa5bd4a085a8bec0 (patch)
tree4b966250615700983bb9172f10d7ecafbefece56 /test/res
downloadnealisp-b530d6360308ac1f68cf2508fa5bd4a085a8bec0.tar.gz
nealisp-b530d6360308ac1f68cf2508fa5bd4a085a8bec0.tar.bz2
nealisp-b530d6360308ac1f68cf2508fa5bd4a085a8bec0.zip
Initial commit
Diffstat (limited to 'test/res')
-rw-r--r--test/res/test.lisp11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/res/test.lisp b/test/res/test.lisp
new file mode 100644
index 0000000..f3d21d9
--- /dev/null
+++ b/test/res/test.lisp
@@ -0,0 +1,11 @@
+(debuglog "Hello, World, here is an atom:" :iamanatom)
+(defun myfun (var) (debuglog var))
+(myfun :myfunworks)
+((lambda (a) (debuglog a)) :atom)
+(debuglog a)
+(def helloworld (pure "hello world"))
+(debuglog helloworld (helloworld))
+(defun + () (seq
+ (debuglog "also multiplication")
+ (debuglog "addition")))
+(debuglog +)