Created
February 12, 2015 11:31
-
-
Save kucaahbe/7e0b663e14f427ac220a to your computer and use it in GitHub Desktop.
WFT?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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