5 lines
74 B
Text
5 lines
74 B
Text
func$ rep s$ n .
|
|
for i to n : r$ &= s$
|
|
return r$
|
|
.
|
|
print rep "ha" 5
|