Skip to content

Instantly share code, notes, and snippets.

@laxmanjangley
Created June 29, 2016 07:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laxmanjangley/5489efa6b94a2be4a89699669cd7c3f6 to your computer and use it in GitHub Desktop.
Save laxmanjangley/5489efa6b94a2be4a89699669cd7c3f6 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("Time elapsed = " + (t1-t0).toString)
result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment