summaryrefslogtreecommitdiff
path: root/tests/vars.bth
blob: 7799acfb2196b035db1562874924fd67675612cd (plain)
1
2
3
4
5
6
7
8
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)