Files
the-way-to-go_ZH_CN/eBook/exercises/chapter_12/hello_who.go
2015-03-03 12:25:25 -05:00

17 lines
238 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, "!")
}