ean5533
fun <T> timeIt(func: () -> T): T { // start timer val result = func() // end timer // println(time) return result }