RosettaCodeData/Task/Time-a-function/Wren/time-a-function.wren
2023-07-01 13:44:08 -04:00

5 lines
100 B
Text

import "./check" for Benchmark
Benchmark.run("a function", 100, true) {
for (i in 0..1e7) {}
}