Skip to content

Instantly share code, notes, and snippets.

@rcreasey
Created October 19, 2010 04:51
Show Gist options
  • Select an option

  • Save rcreasey/633633 to your computer and use it in GitHub Desktop.

Select an option

Save rcreasey/633633 to your computer and use it in GitHub Desktop.
ruby-1.8.7-p299 > a = [1,2]
=> [1, 2]
ruby-1.8.7-p299 > b = a
=> [1, 2]
ruby-1.8.7-p299 > 3.times do
ruby-1.8.7-p299 > b.push b.shift
ruby-1.8.7-p299 ?> end
=> 3
ruby-1.8.7-p299 > b
=> [2, 1]
ruby-1.8.7-p299 > a
=> [2, 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment