1package main
2
3import (
4	"fmt"
5	"github.com/xyproto/vt100"
6)
7
8func main() {
9	fmt.Println("Available VT100 commands:")
10	for _, command := range vt100.Commands() {
11		fmt.Println("\t" + command)
12	}
13	fmt.Println()
14	fmt.Println("Available VT100 colors:")
15	for _, color := range vt100.Colors() {
16		fmt.Println("\t" + color)
17	}
18}
19