os_args.go 197 B

12345678910111213141516
  1. // os_args.go
  2. package main
  3. import (
  4. "fmt"
  5. "os"
  6. "strings"
  7. )
  8. func main() {
  9. who := "Alice "
  10. if len(os.Args) > 1 {
  11. who += strings.Join(os.Args[1:], " ")
  12. }
  13. fmt.Println("Good Morning", who)
  14. }