mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
CoffeeScript 1.3.0
This commit is contained in:
parent
1b3af684cb
commit
ed8d94f69c
74 changed files with 1587 additions and 698 deletions
|
@ -1,9 +1,10 @@
|
|||
// Generated by CoffeeScript 1.3.0
|
||||
var countdown, num;
|
||||
|
||||
countdown = (function() {
|
||||
var _results;
|
||||
var _i, _results;
|
||||
_results = [];
|
||||
for (num = 10; num >= 1; num--) {
|
||||
for (num = _i = 10; _i >= 1; num = --_i) {
|
||||
_results.push(num);
|
||||
}
|
||||
return _results;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue