RosettaCodeData/Task/Repeat-a-string/Phixmonti/repeat-a-string-1.phixmonti

10 lines
109 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
def rep /# s n -- s #/
"" swap
for drop
over chain
endfor
nip
enddef
"ha" 5 rep print