repeat
fun CharSequence.repeat(n: Int): String
For JVM, Native
Returns a string containing this char sequence repeated n times.
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
println("Word".repeat(4)) // WordWordWordWord
println("Word".repeat(0)) //
//sampleEnd
}