Skip to content

Instantly share code, notes, and snippets.

@kucaahbe
Created February 12, 2015 11:31
Show Gist options
  • Save kucaahbe/7e0b663e14f427ac220a to your computer and use it in GitHub Desktop.
Save kucaahbe/7e0b663e14f427ac220a to your computer and use it in GitHub Desktop.
WFT?
irb(main):001:0> a = []
=> []
irb(main):002:0> a << 1
=> [1]
irb(main):003:0> a << a
=> [1, [...]]
irb(main):004:0> a
=> [1, [...]]
irb(main):005:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment