summaryrefslogtreecommitdiff
path: root/benchmark/benchmark.rb
blob: 81e11f854828f9d9ac441143708ff908bbdbf176 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env ruby


ARGV[0].to_i.times {
  start = Time.now
  `#{ARGV[1]} #{ARGV[2]}`
  puts Time.now-start
}