TheMathemagicians/sevenkeys/logic/ui.go

20 lines
247 B
Go
Raw Normal View History

package logic
import (
"bufio"
"fmt"
"os"
)
func GetResponse(prompt string) string {
fmt.Print(prompt, " ")
scanner := bufio.NewScanner(os.Stdin)
var response string
if scanner.Scan() {
response = scanner.Text()
}
return response
}