Erythro/tests/funcs4

10 lines
111 B
Plaintext
Raw Normal View History

2020-09-13 01:26:18 +00:00
void :: main() {
int i;
for(i = 0; i < 5; i = i + 1) {
PrintInteger(i);
}
}