21bc2887d2
Omit Unit return type Refactor handling of Unit type: extract separate object UnitType
8 lines
102 B
Kotlin
8 lines
102 B
Kotlin
package demo
|
|
open class Test() {
|
|
open fun test() {
|
|
for (i in 0..10 - 1) {
|
|
System.out?.println(i)
|
|
}
|
|
}
|
|
} |