Compilation of
echo "{:<10} {:<10} {:^10} {:>25}".fmt(1235,"Cat","Centered","Mouse") # Just a sample
fails with
test.nim(7, 6) Error: type mismatch: got (string, int, tuple[typ: FmtType, precision: int, width: int, fill: nil, align: FmtAlign, sign: FmtSign, baseprefix: bool, upcase: bool, comma: bool, arysep: nil]) but expected one of: strfmt.addformat(o: var Writer, x: T, fmt: Format) ...
I'm using the latest(?) version of strfmt (0.8.0) and nim 0.13.1 as of today.
What is the state of strfmt?