Examples
Basic
go run examples/basic/main.go
==========================
Name Age City
==========================
Alice 30 London
Bob 25 Berlin
Full-Width
go run examples/full-width/main.go
A column with WithMaxWidth will take up all the remaining space in the table,
allowing to align columns to the right of it:
================================================================================
Name Age │ City
================================================================================
Alice 30 │ London
Bob 25 │ Berlin
Note that this is 80 characters wide, the width of the terminal the example is
run in.
With Lipgloss Styling
go run examples/with-lipgloss/main.go