Skip to content
mohayonao edited this page Dec 7, 2013 · 1 revision

Task is a pauseable process like a thread. But this is not a thread in an other language.

Task ->
  console.log "hello"
  1.wait()
  console.log "Task"
  2.wait()
  console.log "World!!"
.start()

Clone this wiki locally