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