9 lines
96 B
Text
9 lines
96 B
Text
|
|
F repeat(f, n)
|
|||
|
|
L 1..n
|
|||
|
|
f()
|
|||
|
|
|
|||
|
|
F procedure()
|
|||
|
|
print(‘Example’)
|
|||
|
|
|
|||
|
|
repeat(procedure, 3)
|