main.go 187 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 package main import ( "bufio" "fmt" "os" ) func main(){ fmt.Print("Please input something: ") scanner := bufio.NewScanner(os.Stdin) scanner.Scan() fmt.Println(scanner.Text()) }