Skip to content

Instantly share code, notes, and snippets.

@PatrickMcDonald
Created August 19, 2014 23:29
Show Gist options
  • Save PatrickMcDonald/5d60fda0af5b67764236 to your computer and use it in GitHub Desktop.
Save PatrickMcDonald/5d60fda0af5b67764236 to your computer and use it in GitHub Desktop.
F# Timer
let createTimer() =
let sw = System.Diagnostics.Stopwatch.StartNew()
fun () ->
sw.Elapsed
let timer = createTimer()
// Do some stuff to time
timer();;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment