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, 0 insertions, 6 deletions
diff --git a/test/nest.resp b/test/nest.resp
deleted file mode 100644
index c15c453..0000000
--- a/test/nest.resp
+++ /dev/null
@@ -1,6 +0,0 @@
-(def (f x)
- (def (g y)
- (* y 2))
- (g (+ x 1)))
-
-(f 3)