Golang espera 1 segundo
time.Sleep(time.Second)
TindyC
time.Sleep(time.Second)
package main
import "time"
func main() {
//Do some code...
time.Sleep(time.second*1) //waits 1 second
//Do some other code...
}