Skip to content

Instantly share code, notes, and snippets.

@gavr123456789
Created March 10, 2019 22:35
Show Gist options
  • Save gavr123456789/84386350c438ec81102340ebb3b30ea6 to your computer and use it in GitHub Desktop.
Save gavr123456789/84386350c438ec81102340ebb3b30ea6 to your computer and use it in GitHub Desktop.
void main(){
int a=5;
int b=3;
a ^= b;
b ^= a;
a ^= b;
print(@"$a, $b");
}
@gavr123456789
Copy link
Author

swap without 3 value

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment