tgpl/ch1/echo/echo.go

12 lines
111 B
Go

package main
import (
"fmt"
"os"
"strings"
)
func main() {
fmt.Println(strings.Join(os.Args[1:], " "))
}