kotlin itérer 1 à 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)