7 lines
104 B
Text
7 lines
104 B
Text
on rep (str, n)
|
|
res = ""
|
|
repeat with i = 1 to n
|
|
put str after res
|
|
end repeat
|
|
return res
|
|
end
|