RosettaCodeData/Task/Repeat/11l/repeat.11l

9 lines
96 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
F repeat(f, n)
L 1..n
f()
F procedure()
print(Example)
repeat(procedure, 3)