Skip to content

Instantly share code, notes, and snippets.

@reciosonny
Created June 1, 2017 10:35
Show Gist options
  • Save reciosonny/802e3fb1290fc6a719d4e78ff80bff7d to your computer and use it in GitHub Desktop.
Save reciosonny/802e3fb1290fc6a719d4e78ff80bff7d to your computer and use it in GitHub Desktop.
Horrible cs code using goto
JumpHere:
int lat, lng, frequency;
if (true)
{
goto myHorribleCode;
}
else
{
goto JumpHere;
}
myHorribleCode:
int x,y,z;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment