diff --git a/ch1/echo3.go b/ch1/echo3.go new file mode 100644 index 0000000..5b2d310 --- /dev/null +++ b/ch1/echo3.go @@ -0,0 +1,12 @@ +//Echo3 Выводит аргументы командной строки +package main + +import ( + "fmt" + "os" + "strings" +) + +func main() { + fmt.Println(strings.Join(os.Args[1:], "|")) +}