mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
5 lines
108 B
Kotlin
5 lines
108 B
Kotlin
// REPL_MODE: ~REPL_MODE~
|
|
|
|
arrayListOf(1, 5, 7).map { it * 2 }
|
|
.filter { it < 10 }
|
|
.find { it == 2 } |