RosettaCodeData/Task/Loops-N-plus-one-half/Logo/loops-n-plus-one-half.logo
2023-07-01 13:44:08 -04:00

6 lines
88 B
Text

to comma.list :n
repeat :n-1 [type repcount type "|, |]
print :n
end
comma.list 10