display.go 123 B

123456789
  1. package terminal
  2. type EraseLineMode int
  3. const (
  4. ERASE_LINE_END EraseLineMode = iota
  5. ERASE_LINE_START
  6. ERASE_LINE_ALL
  7. )