aboutsummaryrefslogtreecommitdiffstats
path: root/test3
blob: 6bf60645c9a041469c3ce2d3c4248801428df79c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# test3
# verify builtin functions, conditionals and such

a = 5

func(checka) {
	if (a == 5) {
		print("a == 5")
	} else {
		print("a != 5")
	}
}

checka()

print("Increment a...")
a = a + 1
checka()

d = 0
while (d < 20) {
	print(d)
	d = d + 1
}