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

34 lines
701 B
JavaScript
Raw Normal View History

2010-07-29 00:51:35 -04:00
var _a, _b, _c, _d, cubes, list, math, num, number, opposite, race, square;
var __slice = Array.prototype.slice;
number = 42;
opposite = true;
if (opposite) {
number = -42;
}
square = function(x) {
return x * x;
};
list = [1, 2, 3, 4, 5];
math = {
root: Math.sqrt,
square: square,
cube: function(x) {
return x * square(x);
}
2010-07-29 00:51:35 -04:00
};
race = function(winner) {
var runners;
runners = __slice.call(arguments, 1);
return print(winner, runners);
};
2010-08-23 22:08:33 -04:00
if (typeof elvis !== "undefined" && elvis !== null) {
2010-07-29 00:51:35 -04:00
alert("I knew it!");
}
cubes = (function() {
_a = []; _c = list;
for (_b = 0, _d = _c.length; _b < _d; _b++) {
num = _c[_b];
_a.push(math.cube(num));
2010-01-05 00:34:18 -05:00
}
2010-07-29 00:51:35 -04:00
return _a;
})();