Last active
July 7, 2016 15:42
-
-
Save arturictus/090dfe6c7968eb3bf046887e82c760b4 to your computer and use it in GitHub Desktop.
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
# && | |
'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