hello_who.go 222 B

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