<@U0JRS2YUB>: Something like this? ``` fun &lt;T&g...
# announcements
e
@sreich: Something like this?
Copy code
fun <T> timeIt(func: () -> T): T {
    // start timer
    val result = func()
    // end timer
    // println(time)
    return result
}