1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Colm: loops
# https://github.com/adrian-thurston/colm
#
while 0
print( '0\n' )
global I: int = 3
int f()
{
I = I - 1
print( ' ', I )
}
# simple expr and stmt
while I
f()
print( '\n' )
# compound stmt list
I = 3
Enter to Rename, <Shift>+Enter to Preview