diff options
Diffstat (limited to 'bench.rb')
-rwxr-xr-x[-rw-r--r--] | bench.rb | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -4,10 +4,14 @@ require 'benchmark' Benchmark.bm(5) do |bm| bm.report('python') do - `python2.7 ./csv-test.py test.csv out.csv` + `python2.7 ./py-test.py test.csv out.csv` end bm.report('ruby') do - `ruby ./csv-test.rb test.csv out.csv` + `ruby ./rb-test.rb test.csv out.csv` + end + + bm.report('crystal') do + `./cr-test test.csv out.csv` end end |