Run »
fun main() { for (nums in 5..15) { println(nums) } }
5
6
7
8
9
10
11
12
13
14
15