Skip to content

Instantly share code, notes, and snippets.

@egladman
Created April 4, 2017 18:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save egladman/3fcef050e153314857f1e1866c9137e3 to your computer and use it in GitHub Desktop.
Save egladman/3fcef050e153314857f1e1866c9137e3 to your computer and use it in GitHub Desktop.

Cuddled

if (condition) {
  //stuff
} else {
  //stuff
}

Non Cuddled

if (condition) {
  //stuff
}
else {
  //stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment