Skip to content

Instantly share code, notes, and snippets.

@radicaled
Created August 14, 2013 01:12
Show Gist options
  • Save radicaled/6227221 to your computer and use it in GitHub Desktop.
Save radicaled/6227221 to your computer and use it in GitHub Desktop.
A shitty reproduction of some shitty C# I dealt with years ago.
// Somewhere near the top of the file
void does_absolutely_nothing() {
return "0"
}
// Somewhere else in the same file.
boolean = does_absolutely_nothing();
if (boolean == "0")
return Boolean.parse("true");
else
return Boolean.parse("false")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment