summaryrefslogtreecommitdiff
path: root/tests/vars.bth
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-21 16:01:46 +0100
committerubq323 <ubq323@ubq323.website>2024-06-21 16:01:46 +0100
commit81662aa56b8ad2fa397b1d3e9dd3bb398c7d1798 (patch)
treeac788aa65d938f6fe1967863e5fe2296e6eacd7b /tests/vars.bth
parent377822b957c442b2ff0882b8325033487037be2b (diff)
print -> puts
Diffstat (limited to 'tests/vars.bth')
-rw-r--r--tests/vars.bth8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/vars.bth b/tests/vars.bth
index 7799acf..a524ae6 100644
--- a/tests/vars.bth
+++ b/tests/vars.bth
@@ -2,8 +2,8 @@
(set a 5)
(set b 10)
(set thethe 1234)
- (print (+ a b))
- (print (- thethe a))
- (print (+ (set a 90) b))
- (print a)
+ (puts (+ a b))
+ (puts (- thethe a))
+ (puts (+ (set a 90) b))
+ (puts a)
nil)