Skip to content

Instantly share code, notes, and snippets.

@richardc
Created May 15, 2013 13:07
Show Gist options
  • Select an option

  • Save richardc/5583882 to your computer and use it in GitHub Desktop.

Select an option

Save richardc/5583882 to your computer and use it in GitHub Desktop.
$ ruby-1.8.7-p371 -e 'a = ["a"]; b = *a; puts b.inspect'
"a"
$ ruby-1.9.3-p429 -e 'a = ["a"]; b = *a; puts b.inspect'
["a"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment