Skip to content

Instantly share code, notes, and snippets.

@exlee
Last active March 23, 2016 13:07
Show Gist options
  • Save exlee/97d0fc4f74d397fa379d to your computer and use it in GitHub Desktop.
Save exlee/97d0fc4f74d397fa379d to your computer and use it in GitHub Desktop.
Ruletka lunchowa / Lunch Roulette
#!env ruby
# -*- coding: utf-8 -*-
ile = ARGV[0].to_i
ile = 1 if ile == 0
opcje = <<EOT
Bar mleczny
Amrit
Hotdog Factory
McDonalds
KFC
Bobby Burger
Pizza Hut
Dominos
Sphinx
Głodówka / Starvation diet
Pół litra i posiedzieć w biurze / Buy alcohol and ignore the hunger
Soul Food
Galeria Wypieków
Coś ze sklepu na sucho / Just something from the shop
EOT
puts opcje.split("\n").sample(ile)
~/Workbench $ ./lunch.rb
Głodówka / Starvation diet
~/Workbench $ ./lunch.rb
Coś ze sklepu na sucho / Just something from the shop
~/Workbench $ ./lunch.rb
Głodówka / Starvation diet
~/Workbench $ ./lunch.rb
Coś ze sklepu na sucho / Just something from the shop
~/Workbench $ ./lunch.rb
Pół litra i posiedzieć w biurze / Buy alcohol and ignore the hunger
~/Workbench $ ./lunch.rb
Pół litra i posiedzieć w biurze / Buy alcohol and ignore the hunger
~/Workbench $ ./lunch.rb
Pół litra i posiedzieć w biurze / Buy alcohol and ignore the hunger
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment