Returns a new instance of Chance.
31 32 33 34
# File 'lib/chance/chance.rb', line 31 def initialize(percent) @odds = percent @happens = @odds.to_f > Kernel.rand(100) end