Skip to content

Instantly share code, notes, and snippets.

@glejeune
Created June 19, 2009 19:34
Show Gist options
  • Select an option

  • Save glejeune/132824 to your computer and use it in GitHub Desktop.

Select an option

Save glejeune/132824 to your computer and use it in GitHub Desktop.
t = ["vert", "jaune", "rouge"]
puts t.push( t.shift )[-1]
# => "vert"
puts t.push( t.shift )[-1]
# => "jaune"
puts t.push( t.shift )[-1]
# => "rouge"
puts t.push( t.shift )[-1]
# => "vert"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment