Skip to content

Instantly share code, notes, and snippets.

@smiler
Last active August 29, 2015 13:56
Show Gist options
  • Save smiler/9091259 to your computer and use it in GitHub Desktop.
Save smiler/9091259 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'highline/import'
stuff = %w{apa kossa hund hest}
p "Här händer det saker!"
mittval = choose do |menu|
menu.prompt = "Wut? "
stuff.each do |e|
menu.choices(e) do
say("Du valde #{e}! hehu.")
mittval = e
end
end
end
p "Nu är #{mittval} valt!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment