added extra text

This commit is contained in:
Nick 2021-05-22 21:17:29 -04:00
parent 17ab0940f7
commit 5711f1d8c8

View File

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