RosettaCodeData/Task/Repeat/Maxima/repeat.maxima

6 lines
75 B
Text
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
repeat(f, n) := thru n do f()$
test() := print("test")$
repeat(test, 3);