aboutsummaryrefslogtreecommitdiffstats
path: root/test/nest.resp
diff options
context:
space:
mode:
Diffstat (limited to 'test/nest.resp')
-rw-r--r--test/nest.resp6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/nest.resp b/test/nest.resp
new file mode 100644
index 0000000..3085737
--- /dev/null
+++ b/test/nest.resp
@@ -0,0 +1,6 @@
+(def (f x)
+ (def (g y)
+ (* y 2))
+ (g x))
+
+(f 3)