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

12 lines
170 B
Text

def myFunc
"Sure looks like a function in here..." print nl
enddef
def rep /# func times -- #/
for drop
dup exec
endfor
drop
enddef
getid myFunc 4 rep