8 lines
109 B
Kotlin
8 lines
109 B
Kotlin
package demo
|
|
open class Test() {
|
|
open fun test() : Unit {
|
|
for (i in 0..10 - 1) {
|
|
System.out?.println(i)
|
|
}
|
|
}
|
|
} |