RosettaCodeData/Task/Repeat-a-string/Factor/repeat-a-string.factor

4 lines
89 B
Factor
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: repeat-string ( str n -- str' ) swap <repetition> concat ;
"ha" 5 repeat-string print