operator fun String.times(n: Int) = this.repeat(n) fun main(args: Array) = println("ha" * 5)