5 lines
75 B
Text
5 lines
75 B
Text
repeat(f, n) := thru n do f()$
|
|
|
|
test() := print("test")$
|
|
|
|
repeat(test, 3);
|