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 54555ad..423dde6 100644 --- a/tests/vars.bth +++ b/tests/vars.bth @@ -1,8 +1,8 @@ (set a 5) (set b 10) (set thethe 1234) -(puts (+ a b)) -(puts (- thethe a)) -(puts (+ (set a 90) b)) -(puts a) +(say (+ a b)) +(say (- thethe a)) +(say (+ (set a 90) b)) +(say a) nil |