Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
simpletable
✓ github.com/alexeyco/simpletable
Create and print a simple ASCII table.
package main
import (
"fmt"
"github.com/alexeyco/simpletable"
)
func main() {
table := simpletable.New()
table.Header = &simpletable.Header{
Cells: []*simpletable.Cell{
{Text: "#"},
{Text: "Name"},
},
}
table.Body.Cells = [][]*simpletable.Cell{
{{Text: "1"}, {Text: "Alice"}},
}
table.Println()
fmt.Println()
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
1.0.0latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.