package ansi import "fmt" const ClearScreen = "\x1b[2J" const ResetCursor = "\x1b[H" func Code (s string) string { return fmt.Sprintf("\x1b[%s", s) }