This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
go-book/echov3/echo.go
Geir Okkenhaug Jerstad f7443bbab9 init
2024-08-13 20:31:39 +02:00

14 lines
137 B
Go

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