package main import ( "fmt" ) func main() { first := "Wan" last := "ShaoBo" name := first +" "+ last fmt.Println("My name is",name) }