Simple api to create nice looking asciitables.
Shameless plug from the fantastic terminal-table, tty-table or prettytable-rs (I only found the later two when writing this readme :)).
import asciitable;
import std.stdio;
new AsciiTable(2)
.row.add("hello").add("world")
.row.add("here").add("we are")
.table
.format
.parts(new UnicodeParts)
.columnSeparator(true)
.writeln;
->
|hello|world |
|here |we are|
Please see the online docs for an example.