pakoito
listOf(1,2,3).let { l: List<Int> -> l.map { "$it" } } // List<String> listOf(1,2,3).run { map { "$it" } } // List<String>