Kotlin itera 1 a 10

//iterating from one to ten Kotlin Example
for (i in 1..10) print(i)
Coder Thirteen