Last active
March 23, 2016 13:07
-
-
Save exlee/97d0fc4f74d397fa379d to your computer and use it in GitHub Desktop.
Ruletka lunchowa / Lunch Roulette
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!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) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/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