cylon/examples/hello.coffee

12 lines
176 B
CoffeeScript
Raw Normal View History

2013-10-23 14:42:16 +08:00
Cylon = require('..')
2013-10-23 14:42:16 +08:00
Cylon.robot
work: ->
every 1.second(), ->
2013-10-23 14:36:31 +08:00
Logger.info("Hello, human!")
after 10.seconds(), ->
Logger.info "Impressive."
.start()