5 lines
132 B
Groovy
5 lines
132 B
Groovy
def clockRealTime = { Closure c ->
|
|
def start = System.currentTimeMillis()
|
|
c.call()
|
|
System.currentTimeMillis() - start
|
|
}
|