5 lines
99 B
Kotlin
Vendored
5 lines
99 B
Kotlin
Vendored
fun test(ps: List<Pair<Int, Boolean>>) {
|
|
for(<expr>(i, b)</expr> in ps) {
|
|
i * i
|
|
}
|
|
} |