gilo/internal/terminal/io.go
Timothy J. Warren 6f51f441e3
All checks were successful
timw4mail/gilo/pipeline/head This commit looks good
Autoformatting
2021-04-07 12:32:57 -04:00

24 lines
276 B
Go

package terminal
import (
"bufio"
"fmt"
"os"
)
var reader = bufio.NewReader(os.Stdin)
func ReadKey() (rune, int) {
ch, size, err := reader.ReadRune()
if err != nil {
panic(err)
}
return ch, size
}
// Print string to stdout
func Write(s string) {
fmt.Print(s)
}