mirror of
https://github.com/jashkenas/coffeescript.git
synced 2022-11-09 12:23:24 -05:00
preparing documentation for 0.9.5
This commit is contained in:
parent
8fcd67e82f
commit
28d5db3bca
36 changed files with 937 additions and 845 deletions
|
@ -1,8 +1,8 @@
|
|||
var _result, count, num;
|
||||
count = ((function() {
|
||||
_result = [];
|
||||
for (num = 1; num <= 10; num++) {
|
||||
_result.push(num);
|
||||
var countdown, num, _results;
|
||||
countdown = ((function() {
|
||||
_results = [];
|
||||
for (num = 10; num >= 1; num--) {
|
||||
_results.push(num);
|
||||
}
|
||||
return _result;
|
||||
return _results;
|
||||
})());
|
Loading…
Add table
Add a link
Reference in a new issue