Skip to content

Instantly share code, notes, and snippets.

@kalorz
Created September 15, 2017 09:57
Show Gist options
  • Save kalorz/277d3facdd4276a0d6ec472d4a11fb35 to your computer and use it in GitHub Desktop.
Save kalorz/277d3facdd4276a0d6ec472d4a11fb35 to your computer and use it in GitHub Desktop.
Ruby Gotchas: and / &&
surprise = true and false # => surprise is true
surprise = true && false # => surprise is false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment