Please post code for displaying time in F#. I noticed that you can measure it from F# interactive with #time directive, but I don\'t know how to execute program from FSI
You could also create custom computation expression to hide actual measuring logic, e.g.:
timer { // your code goes here }
See more examples here: https://fsharpforfunandprofit.com/posts/computation-expressions-bind/