Run »
fun main() { val nums = arrayOf(1, 5, 10, 15, 20) for (x in nums) { println(x) } }
1
5
10
15
20