Files
kotlin-fork/idea/scripting-support/testData/scratch/stdlibFun.kts
T
2019-10-08 15:02:32 +03:00

5 lines
108 B
Kotlin
Vendored

// REPL_MODE: ~REPL_MODE~
arrayListOf(1, 5, 7).map { it * 2 }
.filter { it < 10 }
.find { it == 2 }