3f7b8554dd
#KT-10121 Fixed
6 lines
196 B
Kotlin
Vendored
6 lines
196 B
Kotlin
Vendored
fun adjust(name: String, maxLen: Int) {
|
|
("%-" + maxLen + "s").format(name)
|
|
(1 + 1).toString()
|
|
"a".split(("\\s+" + "\\s+").toRegex(), 2).toTypedArray()
|
|
(1 + 1).extensionFunction()
|
|
} |