Skip to content

Instantly share code, notes, and snippets.

@akesterson
Created September 5, 2013 11:57
Show Gist options
  • Select an option

  • Save akesterson/6449176 to your computer and use it in GitHub Desktop.

Select an option

Save akesterson/6449176 to your computer and use it in GitHub Desktop.
irb(main):001:0> x = ""
=> ""
irb(main):002:0> y = [x]
=> [""]
irb(main):003:0> x="lolzors"
=> "lolzors"
irb(main):004:0> y
=> [""]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment