I want to know, how to make a box in Golang that will contain multiple rows and columns like this
┌────────────┬─────┬────────┐
│ Name │ Age │ Score │
├────────────┼─────┼────────┤
│ John Smith │ 30 │ 99.223 │
│ Jane Smith │ 30 │ 99.223 │
└────────────┴─────┴────────┘
Although there is a library for it, that is called olog but it is not a good option for large datasets.
The second point is that it does not support arrays to be used in a struct like I have asked previously here. In this case, if I have many variables, not just name, age, and score, it will not allow me to write each variable in a struct using an array.
Is there any other library or a way to write the data in columns and rows?
