Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@winstonewert
Created September 6, 2014 04:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save winstonewert/c9e0955bc22ce44930fb to your computer and use it in GitHub Desktop.
Save winstonewert/c9e0955bc22ce44930fb to your computer and use it in GitHub Desktop.
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