1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-29 13:49:14 +08:00

17 lines
211 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"
2013-11-27 20:05:45 -08:00
"github.com/hybridgroup/gobot"
2013-10-22 16:45:31 -07:00
)
func main() {
2013-11-27 20:05:45 -08:00
robot := gobot.Robot{
2013-11-13 20:47:21 -08:00
Work: func() {
2013-11-27 20:05:45 -08:00
gobot.Every("0.5s", func() { fmt.Println("Greetings human") })
2013-11-13 20:47:21 -08:00
},
}
robot.Start()
2013-10-22 16:45:31 -07:00
}