RosettaCodeData/Task/Repeat-a-string/Kotlin/repeat-a-string-1.kts

4 lines
62 B
Kotlin

fun main(args: Array<String>) {
println("ha".repeat(5))
}