Skip to content

Instantly share code, notes, and snippets.

@jshvarts
Created June 27, 2017 05:18
Show Gist options
  • Save jshvarts/c90f2f656e3ab0587947c760273cd629 to your computer and use it in GitHub Desktop.
Save jshvarts/c90f2f656e3ab0587947c760273cd629 to your computer and use it in GitHub Desktop.
For loop decompiled
i = 0;
int var8 = 10000000;
if(i <= var8) {
while(true) {
if(i % 2 == 0) {
var10000 = true;
} else {
var10000 = false;
}
if(i == var8) {
break;
}
++i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment