Skip to content

Instantly share code, notes, and snippets.

@greyfade
Created October 23, 2010 16:28
Show Gist options
  • Save greyfade/642396 to your computer and use it in GitHub Desktop.
Save greyfade/642396 to your computer and use it in GitHub Desktop.
class Foo;
class Bar;
int fun (bool baz) {
int code = 0;
if(baz) {
Foo launch_silo;
code = launch_silo.code1;
goto whoops;
}
Bar missiles;
whoops:
missiles.shutdown(code);
return -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment