1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

CoffeeScript 0.1.4

This commit is contained in:
Jeremy Ashkenas 2009-12-25 14:43:24 -08:00
parent d46bf8ee71
commit 62485c2b8c
6 changed files with 35 additions and 5 deletions

View file

@ -11,9 +11,11 @@
lunch = __d;
// Zebra-stripe a table.
var __e = table;
var __h = [];
for (var __f=0, __g=__e.length; __f<__g; __f++) {
var row = __e[__f];
var i = __f;
i % 2 === 0 ? highlight(row) : null;
__h[__f] = i % 2 === 0 ? highlight(row) : null;
}
__h;
})();