Skip to content

Instantly share code, notes, and snippets.

@jamis
Created February 16, 2010 17:43
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 jamis/305727 to your computer and use it in GitHub Desktop.
Save jamis/305727 to your computer and use it in GitHub Desktop.
# The Fractal Geometry of Recursive Arrays
a = []
a << a << :b
p a
p a[0]
p a[0][0]
# ad infinitum...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment