diff options
Diffstat (limited to 'tests/func2.bth')
-rw-r--r-- | tests/func2.bth | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/func2.bth b/tests/func2.bth index e57bc27..b47f1fa 100644 --- a/tests/func2.bth +++ b/tests/func2.bth @@ -1,5 +1,5 @@ -(set f1 (fn (a) (* a a))) -(set f2 (fn (a b) (+ a b))) +(set! f1 (fn (a) (* a a))) +(set! f2 (fn (a b) (+ a b))) (say (f1 6)) (say (f2 20 40)) (say (f1 (f2 2 1))) |