summaryrefslogtreecommitdiff
path: root/tests/vars.bth
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-21 14:18:54 +0100
committerubq323 <ubq323@ubq323.website>2024-06-21 14:36:08 +0100
commit377822b957c442b2ff0882b8325033487037be2b (patch)
tree9d71bc239e483b9c606dc9849fd890eab02b9a5b /tests/vars.bth
parent21994864559386f1d11c001d6d27714cbf624a15 (diff)
þ -> th
Diffstat (limited to 'tests/vars.bth')
-rw-r--r--tests/vars.bth9
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)