6 lines
64 B
Kotlin
6 lines
64 B
Kotlin
fun testSome() {
|
|
var a = 12
|
|
for (var a in 1..10)
|
|
a = 11
|
|
a = 10
|
|
} |