echo3.go 111 B

1234567891011
  1. package main
  2. import (
  3. "fmt"
  4. "os"
  5. "strings"
  6. )
  7. func main() {
  8. fmt.Println(strings.Join(os.Args[1:], " "))
  9. }