aboutsummaryrefslogtreecommitdiffstats
path: root/script
blob: 3b807a24fa43df962669950dafeeef62ff7190c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
func inc
	set arg0 (arg0 + 1)
	ret arg0
end

set a 0
do
	inc a > a
	if ((a % 9) == 0)
		put a
	end
while (a < 100)

if (a == 100)
	put "All good!"
end