summaryrefslogtreecommitdiff
path: root/tests/flet.bth
diff options
context:
space:
mode:
Diffstat (limited to 'tests/flet.bth')
-rw-r--r--tests/flet.bth7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/flet.bth b/tests/flet.bth
new file mode 100644
index 0000000..102fc34
--- /dev/null
+++ b/tests/flet.bth
@@ -0,0 +1,7 @@
+(set f1 (fn (a b c) (say (* a (+ b c)))))
+(set f2 (fn (a) (say (* a a))))
+(if true
+ (f1 6 2 4)
+ (f2 7))
+(let (a 100 b 200 c 300)
+ (say b))