Skip to content

Instantly share code, notes, and snippets.

@RobertDober
Created September 11, 2009 07:08
Show Gist options
  • Save RobertDober/185131 to your computer and use it in GitHub Desktop.
Save RobertDober/185131 to your computer and use it in GitHub Desktop.
a,b,c=[ [] ] * 3
a << "Hello"
p b
a,b,c=Array::new(3){ [] }
a << "Hello"
p b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment