diff options
Diffstat (limited to 'tests/vars.bth')
-rw-r--r-- | tests/vars.bth | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/vars.bth b/tests/vars.bth index 423dde6..aaa2a19 100644 --- a/tests/vars.bth +++ b/tests/vars.bth @@ -1,8 +1,8 @@ -(set a 5) -(set b 10) -(set thethe 1234) +(set! a 5) +(set! b 10) +(set! thethe 1234) (say (+ a b)) (say (- thethe a)) -(say (+ (set a 90) b)) +(say (+ (set! a 90) b)) (say a) nil |