// REPL_MODE: true arrayListOf(1, 5, 7).map { it * 2 } // RESULT: res0: kotlin.Int? = 2 .filter { it < 10 } .find { it == 2 }