RosettaCodeData/Task/Repeat/Swift/repeat.swift

8 lines
102 B
Swift
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
func repeat(n: Int, f: () -> ()) {
for _ in 0..<n {
f()
}
}
repeat(4) { println("Example") }