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

5 lines
78 B
Text

Red[]
myrepeat: function [fn n] [loop n [do fn]]
myrepeat [print "hello"] 3