blob: 53fce0dcfd2c28def6ab632ea4049c90a2a6aff7 (
plain)
1
2
3
4
5
6
7
8
9
|
(define-library (world tty-commands)
(import (scheme base))
(export tui-initialize!
tui-deinitialize!
move-cursor!
hide-cursor!
show-cursor!
erase-screen!)
(include "tty-commands.scm"))
|