1package main
2
3import (
4	"github.com/xyproto/vt100"
5)
6
7func main() {
8	vt100.Init()
9
10	c := vt100.NewCanvas()
11	c.FillBackground(vt100.Blue)
12	c.Draw()
13
14	vt100.WaitForKey()
15
16	vt100.Close()
17}
18