123456789101112131415161718 |
- package terminal
- const (
- KeyArrowLeft = '\x02'
- KeyArrowRight = '\x06'
- KeyArrowUp = '\x10'
- KeyArrowDown = '\x0e'
- KeySpace = ' '
- KeyEnter = '\r'
- KeyBackspace = '\b'
- KeyDelete = '\x7f'
- KeyInterrupt = '\x03'
- KeyEndTransmission = '\x04'
- )
- func soundBell() {
- Print("\a")
- }
|