Skip to content

Instantly share code, notes, and snippets.

@glejeune
Created June 19, 2009 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glejeune/132824 to your computer and use it in GitHub Desktop.
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