Skip to content

Instantly share code, notes, and snippets.

@kmdsbng
Created January 21, 2015 01:36
Show Gist options
  • Select an option

  • Save kmdsbng/3dd3821d892d491e270a to your computer and use it in GitHub Desktop.

Select an option

Save kmdsbng/3dd3821d892d491e270a to your computer and use it in GitHub Desktop.
a = true
b = true
if a && b
puts "hoge"
end
if a and b
puts "moge"
end
c = true
d = false
e = c && d
e # => false
f = c and d
f # => true
# >> hoge
# >> moge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment