Module fmt/writer
fmt/writer
Chainable string builder for composing formatted output.
Example
{ Writer, Alignment } :: import "std/fmt/writer";
w := Writer.new()
.write_str("hello ")
.write_str("world")
.write_byte(u8(33));
s := w.to_string(); // "hello world!"