Run »
fun myFunction() { println("I just got executed!") } fun main() { myFunction() myFunction() myFunction() }
I just got executed!
I just got executed!
I just got executed!