Skip to content

Instantly share code, notes, and snippets.

@arturictus
Last active July 7, 2016 15:42
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 arturictus/090dfe6c7968eb3bf046887e82c760b4 to your computer and use it in GitHub Desktop.
Save arturictus/090dfe6c7968eb3bf046887e82c760b4 to your computer and use it in GitHub Desktop.
# &&
'hello' unless true && false
#=> "hello"
'hello' unless false && true
#=> "hello"
'hello' unless false && false
#=> "hello"
'hello' unless true && true
#=> nil
# ||
'hello' unless false || false
#=> "hello"
'hello' unless true || true
#=> nil
'hello' unless false || true
#=> nil
'hello' unless true || false
#=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment