Skip to content

Instantly share code, notes, and snippets.

@yangsu
Created January 28, 2013 03:04
Show Gist options
  • Save yangsu/4652698 to your computer and use it in GitHub Desktop.
Save yangsu/4652698 to your computer and use it in GitHub Desktop.
Ruby is Purely Object Oriented
42.class # => Fixnum
42.0.class # => Float
"foo".class # => String
[1,2,3].class # => Array
42.methods # shows the methods available on the object
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment