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