RosettaCodeData/Task/Repeat/Kotlin/repeat.kts

13 lines
186 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
// version 1.0.6
fun repeat(n: Int, f: () -> Unit) {
for (i in 1..n) {
f()
println(i)
}
}
fun main(args: Array<String>) {
repeat(5) { print("Example ") }
}