0 votes
in Kotlin by
How to initialize an array in Kotlin with values?

1 Answer

0 votes
by
val numbers: IntArray = intArrayOf(10, 20, 30, 40, 50)
...