summaryrefslogtreecommitdiff
path: root/tests/vars.bth
diff options
context:
space:
mode:
Diffstat (limited to 'tests/vars.bth')
-rw-r--r--tests/vars.bth17
1 files changed, 8 insertions, 9 deletions
diff --git a/tests/vars.bth b/tests/vars.bth
index a524ae6..54555ad 100644
--- a/tests/vars.bth
+++ b/tests/vars.bth
@@ -1,9 +1,8 @@
-(do
- (set a 5)
- (set b 10)
- (set thethe 1234)
- (puts (+ a b))
- (puts (- thethe a))
- (puts (+ (set a 90) b))
- (puts a)
- nil)
+(set a 5)
+(set b 10)
+(set thethe 1234)
+(puts (+ a b))
+(puts (- thethe a))
+(puts (+ (set a 90) b))
+(puts a)
+nil