Skip to content

Instantly share code, notes, and snippets.

@benfalk
Last active November 22, 2017 16:34
Show Gist options
  • Save benfalk/e5b735713877d9b2268bc91cc294466d to your computer and use it in GitHub Desktop.
Save benfalk/e5b735713877d9b2268bc91cc294466d to your computer and use it in GitHub Desktop.
false || SomeModule #=> SomeModule
true && SomeModule #=> SomeModule
nil || "A String Value" #=> "A String Value"
:a || :b #=> :a
:a && :b #=> :b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment