7 lines
128 B
Kotlin
Vendored
7 lines
128 B
Kotlin
Vendored
package testing
|
|
|
|
private fun <T> times(times : Int, body : () -> T) {}
|
|
|
|
fun main(args: Array<String>) {
|
|
times(3) {<caret>}
|
|
} |