+-,separator-+
             +-(LINE)--+------------+-+
>>-toString(-+------------------------+-)----------------------><
             +-(CHAR)-----------------+
Example 5.158. Array class - toString method
a = .array~of(1,2,3,4)  -- Loads the array
say a~toString  -- Produces: 1
                --           2
                --           3
                --           4
say a~toString("c")  -- Produces: 1234
say a~toString(, ", ")  -- Produces: 1, 2, 3, 4