Erythro/tests/old/while

8 lines
79 B
Plaintext

{
int i;
while (i <= 10) {
print i;
i = i + 1;
}
}