RosettaCodeData/Task/Time-a-function/F-Sharp/time-a-function.fs

9 lines
219 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
open System.Diagnostics
let myfunc data =
let timer = new Stopwatch()
timer.Start()
let result = data |> expensive_processing
timer.Stop()
printf "elapsed %d ms" timer.ElapsedMilliseconds
result