textmatrix v0.2.0 Textmatrix View Source
Textmatrix is a thin wrapper around Charlists to make working with two dimensional text a breeze.
Once you're done, turn it into a multiline string.
Example
iex> Textmatrix.new() ...> |> Textmatrix.write(2, 2, "Hello, world!") ...> |> Textmatrix.to_string() "\n\n Hello, world!"