Skip to content

Instantly share code, notes, and snippets.

View cyril's full-sized avatar
🌶️
I like spicy pad thai

Cyril Kato cyril

🌶️
I like spicy pad thai
View GitHub Profile
@cyril
cyril / megalotto.rb
Last active August 29, 2015 14:06 — forked from jodosha/megalotto.rb
Thread-safe MegaLotto
module MegaLotto
class Configuration
attr_accessor :drawing_count
def initialize
@drawing_count = 6
end
end
class Drawing