Add Coffeescript version of countdown.js.

1.2
rgieseke 2011-04-22 17:39:51 +02:00
parent e1317fffbb
commit fdd1eebe0a
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
t = 10
while t > 0
console.log t
phantom.sleep 1000
t = t - 1
console.log 'BLAST OFF'
phantom.exit()