aboutsummaryrefslogtreecommitdiffstats
path: root/test/deffn.scm
diff options
context:
space:
mode:
Diffstat (limited to 'test/deffn.scm')
-rw-r--r--test/deffn.scm3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/deffn.scm b/test/deffn.scm
new file mode 100644
index 0000000..3550a39
--- /dev/null
+++ b/test/deffn.scm
@@ -0,0 +1,3 @@
+(define f (lambda (x) (+ x 1)))
+
+(f 2)