Skip to content

Instantly share code, notes, and snippets.

@mculp
Created February 11, 2011 21:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mculp/823109 to your computer and use it in GitHub Desktop.
Save mculp/823109 to your computer and use it in GitHub Desktop.
>> a = OpenStruct.new
=> #<OpenStruct>
>> h = OpenStruct.new
=> #<OpenStruct>
>> h.a = a
=> #<OpenStruct>
>> a.h = h
=> #<OpenStruct a=#<OpenStruct h=#<OpenStruct ...>>>
>> h.a.h.a.h.a.h.a.h.a.h.a.h.a.h.a.h
=> #<OpenStruct a=#<OpenStruct h=#<OpenStruct ...>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment