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