Skip to content

Instantly share code, notes, and snippets.

@methodmissing
Created April 19, 2009 19:47
Show Gist options
  • Select an option

  • Save methodmissing/98189 to your computer and use it in GitHub Desktop.

Select an option

Save methodmissing/98189 to your computer and use it in GitHub Desktop.
class Target
def initialize( runs )
@runs = runs
end
def run!
@runs.times do
Time.now
end
end
end
Target.new(1000).run!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment