Skip to content

Instantly share code, notes, and snippets.

@apeiros
Forked from pdtpatrick/helpneeded.rb
Created December 2, 2012 21:54
Show Gist options
  • Save apeiros/70fddaf3e4caf399feb4 to your computer and use it in GitHub Desktop.
Save apeiros/70fddaf3e4caf399feb4 to your computer and use it in GitHub Desktop.
need_help1
#!/usr/bin/env ruby
list = {
'name' => 'Patrick',
'Patrick' => 'Age',
'Age' => 'Addy',
'Addy' => '_none',
}
current = 'name'
collector = []
begin
current = list[current]
collector << current
end until current == '_none'
collector.pop
p collector
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment