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

9 lines
109 B
Text

def rep /# s n -- s #/
"" swap
for drop
over chain
endfor
nip
enddef
"ha" 5 rep print