mikehearn
hho
infix operator fun Int.times(s: String) = s.repeat(this) infix operator fun String.times(n: Int) = this.repeat(n)