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

14 lines
137 B
Go
Raw Permalink Normal View History

2024-08-13 20:31:39 +02:00
package main
import (
"fmt"
"os"
"strings"
)
func main() {
fmt.Println(strings.Join(os.Args[1:], " "))
fmt.Print(os.Args[0:])
}