Kotlin Itater 1-10

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