Skip to content

Instantly share code, notes, and snippets.

@myano
Last active December 14, 2015 08:39
Show Gist options
  • Save myano/5059195 to your computer and use it in GitHub Desktop.
Save myano/5059195 to your computer and use it in GitHub Desktop.
This is an example of a styling preference seen in PHP that I find annoying.
<?php
echo "I find this format for the brackets annoying.";
if (mynum < 10) {
echo "low";
}
else {
echo "yay!";
}
echo "I prefer the following format for the brackets.";
if (mynum < 10)
{
echo "low";
}
else
{
echo "yay";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment