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

4 lines
89 B
Factor
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
: repeat-string ( str n -- str' ) swap <repetition> concat ;
"ha" 5 repeat-string print