Skip to content

Instantly share code, notes, and snippets.

@eternal44
Last active August 29, 2015 14:28
Show Gist options
  • Save eternal44/86920604f354cda13f0a to your computer and use it in GitHub Desktop.
Save eternal44/86920604f354cda13f0a to your computer and use it in GitHub Desktop.
Alternative ternary statement - without "if" statement
# no "if" statement
def ternary(statement, true_result, false_result)
(true && statement) && true_result || false_result
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment