Skip to content

Instantly share code, notes, and snippets.

@pawelsawicz
Created October 1, 2015 14:52
Show Gist options
  • Save pawelsawicz/24229ac0a205e2b82843 to your computer and use it in GitHub Desktop.
Save pawelsawicz/24229ac0a205e2b82843 to your computer and use it in GitHub Desktop.
if(a<=b){
return 1;
}
else{
return 0;
}
IL changes to
if(a>b){
return 0;
}
else{
return 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment