4 lines
84 B
Kotlin
4 lines
84 B
Kotlin
|
|
package exh
|
||
|
|
|
||
|
|
operator fun StringBuilder.plusAssign(other: String) { append(other) }
|