Files
the-way-to-go_ZH_CN/eBook/exercises/chapter_12/hello_who.go

17 lines
222 B
Go
Executable File

// hello_who.go
package main
import (
"fmt"
"os"
"strings"
)
func main() {
who := "World"
if len(os.Args) > 1 { // os.Args[0] == hello_who
who = strings.Join(os.Args[1:], " ")
}
fmt.Println("Hello", who, "!")
}