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
fe8d73a13c
saqut-compiler
/
tests
/
golden
/
bitwise
/
compound.sqt
13 lines
151 B
Plaintext
Raw
Blame
History
int main() {
int x = 15;
x &= 6;
print(x);
x |= 8;
print(x);
x <<= 2;
print(x);
x >>= 1;
print(x);
return 0;
}
Reference in New Issue
View Git Blame
Copy Permalink