Skip to content

Instantly share code, notes, and snippets.

@MikeRogers0
Created June 10, 2012 22:38
Show Gist options
  • Save MikeRogers0/2907562 to your computer and use it in GitHub Desktop.
Save MikeRogers0/2907562 to your computer and use it in GitHub Desktop.
Braces Example
<?php
/* Examples of annoying code */
if ( $coder === 'Silly' ) bang_head();
while ( $coder === 'Silly' )
bang_head();
endwhile;
/* Examples of good code*/
if ( $coder !== 'Silly' ){ Drink_Beer(); }
while ( $coder !== 'Silly' ){
Drink_Beer();
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment