3 lines
102 B
Text
3 lines
102 B
Text
operator fun String.times(n: Int) = this.repeat(n)
|
|
|
|
fun main(args: Array<String>) = println("ha" * 5)
|