summaryrefslogtreecommitdiff
path: root/tests/whilelet.bth
blob: e717a6ec5e6e524fc31d76b07ded92c6a87029f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
(do
	(let (i 0
		  a [])
		(while (< i 10)
			(append! a i)
			(set! i (+ i 1)))
		(let (x 100
			  y 200
			  z 300)
			(say y))
		(say a)))