Skip to content

Instantly share code, notes, and snippets.

@ZSchneidi
Created October 9, 2012 09:26
Show Gist options
  • Save ZSchneidi/3857619 to your computer and use it in GitHub Desktop.
Save ZSchneidi/3857619 to your computer and use it in GitHub Desktop.
if (bla){
if (wup){
foo;
}
}
if (bla)
{
if (wup)
{
foo;
}
}
oder eben
if (bla)
{
if (wup)
{
foo;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment