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