diff options
Diffstat (limited to 'tests/clos5.bth')
-rw-r--r-- | tests/clos5.bth | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/clos5.bth b/tests/clos5.bth new file mode 100644 index 0000000..f4202b9 --- /dev/null +++ b/tests/clos5.bth @@ -0,0 +1,8 @@ +(defn (f) + (def x 0) + (defn (i) x) + (set! x 100) + i) + +(say ((f))) + |