Skip to content

Instantly share code, notes, and snippets.

@pablete
Created March 8, 2017 01:02
Show Gist options
  • Save pablete/22d83ba903844f824eedee354c2bfd2b to your computer and use it in GitHub Desktop.
Save pablete/22d83ba903844f824eedee354c2bfd2b to your computer and use it in GitHub Desktop.
def time[R](block: => R): R = {
val t0 = System.currentTimeMillis
val result = block // call-by-name
val t1 = System.currentTimeMillis
println("Elapsed time: " + (t1 - t0) + "ms")
result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment