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