tbl := &chocotable.Table{}
tbl.AddRow([]string{"1", "Hello"})
tbl.AddRow([]string{"2", "World!"})
tbl.AddRow([2]string{"3", "ham egg tomate"})
tbl.AddRow([]string{"4", "アイウエオ"})
tbl.AddRow([]interface{}{5, "Lorem Ipsum"})
tbl.AddRow(struct {
ID int
Name string
}{6, "Golang"})
s := tbl.Render()
// or
tbl.Println()
┌───┬────────────────┐
│ 1 │ Hello │
├───┼────────────────┤
│ 2 │ World! │
├───┼────────────────┤
│ 3 │ ham egg tomate │
├───┼────────────────┤
│ 4 │ アイウエオ │
├───┼────────────────┤
│ 5 │ Lorem Ipsum │
├───┼────────────────┤
│ 6 │ Golang │
└───┴────────────────┘