aboutsummaryrefslogtreecommitdiffstats
path: root/test8
blob: 8081b4ccb3a136043d9e6f834e5066473d46d31e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
array(a, 10)

i = 0
while (i < 10) {
	a.i = i * 2
	i = i + 1
}

i = 0
while (i < 10) {
	print(a.i)
	i = i + 1
}

a.20 = 143
print(a.20)
print(a.19)