Created
September 6, 2014 04:01
-
-
Save winstonewert/c9e0955bc22ce44930fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if(a != b) { | |
return 0; | |
} else if(c > d) { | |
return 1; | |
} else if(e != f) { | |
e++; | |
return 3; | |
} else { | |
a.doSomeStuff(); | |
c.makeSomeThingsWith(b); | |
f.undo(d, e); | |
return 9; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment