aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/let-over-fn.resp7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/let-over-fn.resp b/test/let-over-fn.resp
new file mode 100644
index 0000000..be3131f
--- /dev/null
+++ b/test/let-over-fn.resp
@@ -0,0 +1,7 @@
+(def inc
+ (let (x 1)
+ (fn (y) (+ x y))))
+
+(inc 1)
+
+ \ No newline at end of file