RosettaCodeData/Task/Repeat-a-string/EasyLang/repeat-a-string.easy

8 lines
83 B
Text
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
func$ rep s$ n .
for i to n
r$ &= s$
.
return r$
.
print rep "ha" 5