dilaria/test.dil
2022-01-04 21:35:45 +01:00

8 lines
No EOL
72 B
Text

let i = 0;
while i < 100 {
print i;
i = i + 1;
}
print "done";