Answers for "Como fazer lista numeraria em Kotlin"

0

Como fazer lista numeraria em Kotlin

fun main() {
    println(List(5) { idx -> "No. $idx" })
}

// [No. 0, No. 1, No. 2, No. 3, No. 4]
Posted by: Guest on April-07-2022

Code answers related to "Como fazer lista numeraria em Kotlin"

Browse Popular Code Answers by Language