8 lines
195 B
Kotlin
Vendored
8 lines
195 B
Kotlin
Vendored
import kotlinApi.extensionFunction
|
|
|
|
|
|
fun adjust(name: String?, maxLen: Int) {
|
|
(1 + 1).toString()
|
|
"a".split(("\\s+" + "\\s+").toRegex(), 2).toTypedArray()
|
|
(1 + 1).extensionFunction()
|
|
} |