package main import "os" func clearEOL() { os.Stdout.Write([]byte{0x1b, 0x5b, 0x4b}) } func goUp() { os.Stdout.Write([]byte{0x1b, 0x5b, 0x41}) }