Skip to content

Instantly share code, notes, and snippets.

@tarcieri
Created August 4, 2008 19:39
Show Gist options
  • Select an option

  • Save tarcieri/3964 to your computer and use it in GitHub Desktop.

Select an option

Save tarcieri/3964 to your computer and use it in GitHub Desktop.
>> o = Object.new
=> #<Object:0x1110cdc>
>> class << o
>> FOO = 'bar'
>> end
=> "bar"
>> class << o; self; end::FOO
=> "bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment