Skip to content

Instantly share code, notes, and snippets.

@harukizaemon
Created September 26, 2009 23:19
Show Gist options
  • Save harukizaemon/194492 to your computer and use it in GitHub Desktop.
Save harukizaemon/194492 to your computer and use it in GitHub Desktop.
Welcome to interactive ruby!
irb --> RUBY_VERSION
==> "1.9.1"
irb --> {} == {}
==> true
irb --> {}.eql?({})
==> true
irb --> {}.equal?({})
==> false
irb --> {} === {}
==> true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment