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