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