diff --git a/hello.go b/hello.go index 674a860..0673e81 100644 --- a/hello.go +++ b/hello.go @@ -1,7 +1,11 @@ package main -import "fmt" +import ( "fmt" + "time" + ) func main(){ - fmt.Println("Hello World!") + fmt.Println("Hello World!") + duration := time.Second + time.Sleep(duration) }