Skip to content

Instantly share code, notes, and snippets.

@MooxxNew
Created September 14, 2015 18:10
Show Gist options
  • Save MooxxNew/13e81e9bc4e85717ae23 to your computer and use it in GitHub Desktop.
Save MooxxNew/13e81e9bc4e85717ae23 to your computer and use it in GitHub Desktop.
def time[T](block: => T): T = {
val start = System.currentTimeMillis
val res = block
val totalTime = System.currentTimeMillis - start
println("Elapsed time: %1d ms".format(totalTime))
res
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment