countdown.coffee 126 B

12345678
  1. t = 10
  2. interval = setInterval ->
  3. if t > 0
  4. console.log t--
  5. else
  6. console.log 'BLAST OFF!'
  7. phantom.exit()
  8. , 1000