Created
August 3, 2012 13:12
-
-
Save garethrees/3247597 to your computer and use it in GitHub Desktop.
Ternary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # In Ruby you can do this: | |
| if something then do_this else do_that | |
| # Which is the same as: | |
| something ? do_this : do_that |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment