aboutsummaryrefslogtreecommitdiff
path: root/buzzard/demo2.th
blob: 8bf8eee17893f22008615b8003f9fff73a1d9f2c (plain)
1
2
3
4
5
6
7
8
9
10
: demo2 

	10 0		( iterate from 0 stopping before 10 )
	do
	    i .  	( print the loop counter )
	loop
	cr		( add a newline )
;

demo2