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
32
Pull Requests
Packages
Projects
Releases
Wiki
Activity
3e685ea960
saqut-compiler
/
source.sqt
11 lines
138 B
Plaintext
Raw
Blame
History
int main() {
int x = 0;
while (x < 5) {
x = x + 1;
}
do {
x = x - 1;
} while (x > 0);
return x;
}
Reference in New Issue
View Git Blame
Copy Permalink