8 lines
130 B
Kotlin
Vendored
8 lines
130 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
import java.lang.Math.abs
|
|
|
|
fun x() {
|
|
listOf<Int>()
|
|
.take(10)
|
|
.filter { <caret>abs(it) < 10 }
|
|
} |