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)

Related questions

0 votes
0 votes
asked Oct 5, 2021 in Kotlin by rajeshsharma
0 votes
asked Oct 5, 2021 in Kotlin by rajeshsharma
...