7 lines
77 B
Kotlin
Vendored
7 lines
77 B
Kotlin
Vendored
fun foo() {
|
|
var a: Int
|
|
a = 1
|
|
for (i in 1..10)
|
|
print(i)
|
|
}
|