diff options
author | ubq323 <ubq323@ubq323.website> | 2024-06-21 14:18:54 +0100 |
---|---|---|
committer | ubq323 <ubq323@ubq323.website> | 2024-06-21 14:36:08 +0100 |
commit | 377822b957c442b2ff0882b8325033487037be2b (patch) | |
tree | 9d71bc239e483b9c606dc9849fd890eab02b9a5b /tests/vars.bth | |
parent | 21994864559386f1d11c001d6d27714cbf624a15 (diff) |
þ -> th
Diffstat (limited to 'tests/vars.bth')
-rw-r--r-- | tests/vars.bth | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/vars.bth b/tests/vars.bth new file mode 100644 index 0000000..7799acf --- /dev/null +++ b/tests/vars.bth @@ -0,0 +1,9 @@ +(do + (set a 5) + (set b 10) + (set thethe 1234) + (print (+ a b)) + (print (- thethe a)) + (print (+ (set a 90) b)) + (print a) + nil) |