hybridgroup.gobot/examples/hello.go

17 lines
211 B
Go
Raw Normal View History

2013-10-23 07:45:31 +08:00
package main
import (
2013-11-14 12:47:21 +08:00
"fmt"
2013-11-28 12:05:45 +08:00
"github.com/hybridgroup/gobot"
2013-10-23 07:45:31 +08:00
)
func main() {
2013-11-28 12:05:45 +08:00
robot := gobot.Robot{
2013-11-14 12:47:21 +08:00
Work: func() {
2013-11-28 12:05:45 +08:00
gobot.Every("0.5s", func() { fmt.Println("Greetings human") })
2013-11-14 12:47:21 +08:00
},
}
robot.Start()
2013-10-23 07:45:31 +08:00
}