diff options
Diffstat (limited to 'bench/runbench.myr')
-rw-r--r-- | bench/runbench.myr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/runbench.myr b/bench/runbench.myr index 81bf436..ea69f83 100644 --- a/bench/runbench.myr +++ b/bench/runbench.myr @@ -7,7 +7,7 @@ const main = {args : byte[:][:] std.put("Running benchmarks: {} samples per binary\n", Nsamp); tot = 0.0; - for arg in args[1:] + for arg : args[1:] tot = tot + timeit(arg) ;; std.put("total:\t{}s\n", tot); |