From 5847938677ee6e421e7b9901f225ebd1f4a8eed3 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 22 May 2021 21:19:45 -0400 Subject: [PATCH] added another line --- hello.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hello.go b/hello.go index ecc33a6..3f86fa3 100644 --- a/hello.go +++ b/hello.go @@ -2,6 +2,7 @@ package main import ( "fmt" "time" + "runtime" ) func main(){ @@ -11,4 +12,6 @@ func main(){ fmt.Println("Hello World! 1") time.Sleep(duration) fmt.Println("Hello World! 2") + time.Sleep(duration) + fmt.Printf("Hello from: %s %s\n",runtime.GOOS,runtime.GOARCH) }