Accumulating strings dynamically

No, write to a buffer: create buf = IOBuffer(), accumulate characters as print(buf, c), and then do String(take!(buf)) at the end.

2 Likes