func() {          
    for i := 0; i < 4; i++ {
        fmt.Println("Working #", i)       
        time.Sleep(250 * time.Millisecond)
    }
}