Skip to content

Instantly share code, notes, and snippets.

@raganwald
Last active August 29, 2015 14:19
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 raganwald/ed8cd3eebcac921ac047 to your computer and use it in GitHub Desktop.
Save raganwald/ed8cd3eebcac921ac047 to your computer and use it in GitHub Desktop.
The way I usually format if-as-expressions
something = if condition
value-if-truthy
else
value-if-falsy
return condition
? value-if-truthy
: value-if-falsy;
involeMethodWith if condition
value-if-truthy
else
value-if-falsy
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment