5 lines
111 B
Text
5 lines
111 B
Text
|
|
to copies :n :thing [:acc "||]
|
||
|
|
if :n = 0 [output :acc]
|
||
|
|
output (copies :n-1 :thing combine :acc :thing)
|
||
|
|
end
|