cminus/data/test11.c

10 lines
139 B
C
Raw Normal View History

2023-04-10 11:17:11 -04:00
void main() {
int i;
i = 0;
println("This program prints 0 through 9.");
while (i < 10) {
println(i);
i = i + 1;
}
}