summaryrefslogtreecommitdiff
path: root/tests/vars.bth
blob: a524ae65941230520f8d133d96f7b292428df609 (plain)
1
2
3
4
5
6
7
8
9
(do
	(set a 5)
	(set b 10)
	(set thethe 1234)
	(puts (+ a b))
	(puts (- thethe a))
	(puts (+ (set a 90) b))
	(puts a)
	nil)