Skip to content

Instantly share code, notes, and snippets.

@banister
Created April 18, 2012 13:42
Show Gist options
  • Save banister/e9168873e4f71fcf7860 to your computer and use it in GitHub Desktop.
Save banister/e9168873e4f71fcf7860 to your computer and use it in GitHub Desktop.
[1] (pry) main: 0> o =Object.new
=> #<Object:0x007fcea19591e8>
[2] (pry) main: 0> o.instance_variable_set(:@x, 10)
=> 10
[3] (pry) main: 0> puts o
#<Object:0x007fcea19591e8>
=> nil
[4] (pry) main: 0> p o
#<Object:0x007fcea19591e8 @x=10>
=> #<Object:0x007fcea19591e8 @x=10>
[5] (pry) main: 0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment