saqut-compiler/source.sqt

2 lines
98 B
Plaintext

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