Skip to content

Instantly share code, notes, and snippets.

@jamesalmond
Created October 24, 2012 09:57
Show Gist options
  • Save jamesalmond/3945255 to your computer and use it in GitHub Desktop.
Save jamesalmond/3945255 to your computer and use it in GitHub Desktop.
Fixnum.class_eval do
def percent_of_the_time
if (rand * 100) < self
yield
end
end
end
80.percent_of_the_time do
puts "LAL"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment