// test
package main

import (
    "bufio"
    "fmt"
    "os"
)

func main() {
    reader := bufio.NewReader(os.Stdin)
    fmt.Print("What is your name:")
    data, _, _ := reader.ReadLine()
    fmt.Printf("Your name is %s.\r\n", data)
}
$ go run test.go 
What is your name:Li Lei
Your name is Li Lei.