Kotlin - Functions
What will be printed by this Kotlin code?
infix fun String.repeat(times: Int) = buildString { repeat(times) { append(this@repeat) } }
fun main() {
val result = "Hi" repeat 3
println(result)
}