textmatrix v0.1.1 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()
Hello, world!