saqut-compiler/source.sqt

11 lines
138 B
Plaintext

int main() {
int x = 0;
while (x < 5) {
x = x + 1;
}
do {
x = x - 1;
} while (x > 0);
return x;
}