From c9ee89f8f095eba52c32eb28779cf49679bf1cd9 Mon Sep 17 00:00:00 2001 From: Igor V Belousov Date: Thu, 18 Nov 2021 02:16:47 +0300 Subject: [PATCH] Chapter 1 - PrintLn without formating --- ch1/echo3.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ch1/echo3.go b/ch1/echo3.go index 5b2d310..27040fb 100644 --- a/ch1/echo3.go +++ b/ch1/echo3.go @@ -9,4 +9,5 @@ import ( func main() { fmt.Println(strings.Join(os.Args[1:], "|")) + fmt.Println(os.Args[1:]) }