1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00

19 lines
201 B
Go
Raw Normal View History

2013-10-22 16:45:31 -07:00
package main
import (
2013-11-13 20:47:21 -08:00
"fmt"
. "gobot"
"time"
2013-10-22 16:45:31 -07:00
)
func main() {
2013-11-13 20:47:21 -08:00
robot := Robot{
Work: func() {
Every(300*time.Millisecond, func() { fmt.Println("Greetings human") })
},
}
robot.Start()
2013-10-22 16:45:31 -07:00
}