1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-26 13:48:49 +08:00
hybridgroup.gobot/examples/every_done.go

27 lines
355 B
Go
Raw Normal View History

package main
import (
"fmt"
"time"
"github.com/hybridgroup/gobot"
)
func main() {
robot := gobot.NewRobot(
"hello",
func() {
done := gobot.Every(500*time.Millisecond, func() {
fmt.Println("Greetings human")
})
gobot.After(5*time.Second, func() {
done <- true
fmt.Println("We're done here")
})
},
)
robot.Start()
}