From 5711f1d8c86517eb530d7f3af49609da076d849a Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 22 May 2021 21:17:29 -0400 Subject: [PATCH] added extra text --- hello.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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") }