Skip to content

Instantly share code, notes, and snippets.

@myui
Created March 9, 2015 08:48
Show Gist options
  • Save myui/1677b85b2ba8b55c22d6 to your computer and use it in GitHub Desktop.
Save myui/1677b85b2ba8b55c22d6 to your computer and use it in GitHub Desktop.
def time[R](block: => R): R = {
val t0 = System.nanoTime()
val result = block
val t1 = System.nanoTime()
println("Elapsed time: " + (t1 - t0) + "ns")
result
}
val result = time { 1 to 1000 sum }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment