I'm trying to create a Kotlin annotation (using KA...
# announcements
d
I'm trying to create a Kotlin annotation (using KAPT) that adds functionality to an existing method, such as performing processing time, etc, so I can do:
Copy code
@Timed
fun doSomething() = print("hello")
And it would output the time to stnd out