diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-26 13:11:00 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-26 13:11:00 +0100 |
commit | c1ad2da9bd1497737c46c53e27f915cc26bc49a6 (patch) | |
tree | 5f701f22a0eed7d09056e1eafe1d60a9a48832a9 /tests/vars.bth | |
parent | 63206b605c36140f2bd476e054b8318c8b08f472 (diff) |
remove explicit toplevel (do ...) from tests
Diffstat (limited to 'tests/vars.bth')
-rw-r--r-- | tests/vars.bth | 17 |
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 |