8 lines
120 B
Plaintext
Vendored
8 lines
120 B
Plaintext
Vendored
import kotlin.math.abs
|
|
|
|
// WITH_RUNTIME
|
|
fun x() {
|
|
listOf<Int>()
|
|
.take(10)
|
|
.filter { abs(it) < 10 }
|
|
} |