Skip to content

Instantly share code, notes, and snippets.

@suin
Created December 18, 2012 16:27
Show Gist options
  • Save suin/4329437 to your computer and use it in GitHub Desktop.
Save suin/4329437 to your computer and use it in GitHub Desktop.
【K&R】
function(...)
{
}
if (...) {
} else {
}
【OTBS】
function()
{
}
if (...) {
}
else {
}
【JavaScript-like】
function () {
}
if (...) {
} else {
}
【Allman】
function(...)
{
}
if (...)
{
}
else
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment