Skip to content

Instantly share code, notes, and snippets.

@aphexmunky
Created March 1, 2013 02:35
Show Gist options
  • Save aphexmunky/5062072 to your computer and use it in GitHub Desktop.
Save aphexmunky/5062072 to your computer and use it in GitHub Desktop.
Scala functional timer wrapper
object Timer {
def timer(t: => Any) = {
val start = System.currentTimeMillis
val func = t
val end = System.currentTimeMillis
println("function took " + (end - start) + " milliseconds")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment