class VotingSystem
@@votes = { "yes, it sucks" => 0, "no, it doesn't suck" => 0, "other" => 0}
...
Ruby On Rubyize this : 6th edition
by jswanner,
April 17, 2008 13:53
class VotingSystem
@@votes = { "yes, it sucks" => 0, "no, it doesn't suck" => 0, "other" => 0}
...
not much different than wha...