ascii.go 148 B

12345678
  1. package ansi
  2. const (
  3. // SP is the space character (Char: \x20).
  4. SP = 0x20
  5. // DEL is the delete character (Caret: ^?, Char: \x7f).
  6. DEL = 0x7F
  7. )