RosettaCodeData/Task/Repeat/Ring/repeat.ring
2023-07-01 13:44:08 -04:00

10 lines
164 B
Text

Func Main
times(5,:test)
Func Test
see "Message from the test function!" + nl
Func Times nCount, F
for x = 1 to nCount
Call F()
next