Erythro/tests/for
Curle 430829e4ec First files.
Currently has two bugs.

First, all functions are resolved to index 0 (currently PrintInteger)

Second, the register used for returning is immediately overwritten by the next allocated register. This means addition of function return values is a little silly.
2020-09-10 01:56:16 +01:00

13 lines
150 B
Plaintext

{
int x;
x = 0;
while (x < 10) {
print x;
x = x + 1;
}
for(x = 20; x > 10; x = x - 1) {
print x;
}
}