wujian_develop_tool/util.go

24 lines
263 B
Go
Raw Normal View History

2022-01-05 20:25:29 +08:00
package main
import (
"bufio"
"os"
)
var read = bufio.NewReader(os.Stdin)
func ReadBool() bool {
ret, _ := read.ReadByte()
switch ret {
case 'y':
fallthrough
case 'Y':
return true
case 'n':
fallthrough
case 'N':
return false
}
return false
}