ascii.go

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