phantomjs/examples/countdown.coffee

9 lines
142 B
CoffeeScript
Raw Normal View History

t = 10
2011-06-02 09:55:20 +04:00
interval = setInterval ->
if t > 0
console.log t--
else
console.log 'BLAST OFF!'
phantom.exit()
, 1000