aboutsummaryrefslogtreecommitdiffstats
path: root/tests/test7
blob: dd4defbedb9ae17e03fc1a8315c9460a361e9b73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
j = 6

func(test) {
	i = 0
	while (i < 10) {
		i = i + 1
	}

	j = 15
}

print(i)
print(" ")
print(j)