This website requires JavaScript.
Explore
Help
Sign In
saqut
/
saqut-compiler
Watch
1
Star
0
Fork
You've already forked saqut-compiler
0
Code
Issues
29
Pull Requests
Packages
Projects
Releases
Wiki
Activity
c67246c99a
saqut-compiler
/
tests
/
golden
/
loops
/
do_while_once.sqt
9 lines
111 B
Plaintext
Raw
Blame
History
int main() {
int x = 5;
do {
print(x);
x = x + 1;
} while (x < 0);
return 0;
}
Reference in New Issue
View Git Blame
Copy Permalink