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) }