Kotlin iterate 1 hingga 10

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