tgpl/ch1/echo/1_1.go
2015-12-03 19:33:19 -08:00

13 lines
165 B
Go

package main
import (
"fmt"
"os"
"strings"
)
func main() {
fmt.Printf("command: %s\n", os.Args[0])
fmt.Printf("args: %s\n", strings.Join(os.Args[1:], " "))
}