blob: fa3ea47d8d0b9872a8d1695d5203fa8fc83fd4e1 [file] [log] [blame]
package main
import (
"fmt"
"time"
)
func main() {
for i := 0; i < 3; i++ {
fmt.Println("Hello!")
time.Sleep(2 * time.Second)
fmt.Println("Goodbye!")
}
}