Skip to content

Instantly share code, notes, and snippets.

@bastndev
Last active January 22, 2024 19:39
Show Gist options
  • Save bastndev/f1f1ab2fd70e22d1134163f3880a546e to your computer and use it in GitHub Desktop.
Save bastndev/f1f1ab2fd70e22d1134163f3880a546e to your computer and use it in GitHub Desktop.
Bitwise Operator 👾
//-FIXME: Bitwise OPerator
void main() {
var a = 5;
var b = 3;
//8 4 2 1
//0 1 0 1
//0 0 1 1
//-- --- --
//0 1 1 1
var result = (a & b);
print(result);
result = (a | b);
print(result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment