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