Skip to content

Instantly share code, notes, and snippets.

@agumonkey
Last active December 14, 2015 16:48
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 agumonkey/5117328 to your computer and use it in GitHub Desktop.
Save agumonkey/5117328 to your computer and use it in GitHub Desktop.
irb(main):001:0> a = [1,2,3]
irb(main):001:0> a = [1,2,3]
=> [1, 2, 3]
irb(main):002:0> b = a << 4
b = a << 4
=> [1, 2, 3, 4]
irb(main):003:0> a
a
=> [1, 2, 3, 4]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment