RosettaCodeData/Task/Repeat/Maxima/repeat.maxima
2026-04-30 12:34:36 -04:00

5 lines
75 B
Text

repeat(f, n) := thru n do f()$
test() := print("test")$
repeat(test, 3);