Skip to content

Instantly share code, notes, and snippets.

@kristjan
Created May 21, 2013 01:25
Show Gist options
  • Save kristjan/5616934 to your computer and use it in GitHub Desktop.
Save kristjan/5616934 to your computer and use it in GitHub Desktop.
@a = true
@b = false
def one_way
@a and @b ? 'surprise!' : 'expected'
end
def the_other_way
@b and @a ? 'surprise!' : 'expected'
end
puts one_way, the_other_way
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment