Files
the-way-to-go_ZH_CN/eBook/examples/chapter_12/os_args.go

17 lines
197 B
Go

// os_args.go
package main
import (
"fmt"
"os"
"strings"
)
func main() {
who := "Alice "
if len(os.Args) > 1 {
who += strings.Join(os.Args[1:], " ")
}
fmt.Println("Good Morning", who)
}