Files
kotlin-fork/compiler/testData/codegen/boxInline/iinc/2.kt
T
2014-03-03 15:43:35 +04:00

7 lines
134 B
Kotlin

public inline fun Int.times2(body : () -> Unit) {
var count = this;
while (count > 0) {
body()
count--
}
}