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

46 lines
810 B
JavaScript
Raw Normal View History

2012-10-23 16:45:31 -04:00
// Generated by CoffeeScript 1.4.0
2011-12-18 13:41:33 -05:00
var cubes, list, math, num, number, opposite, race, square,
2012-04-10 14:57:45 -04:00
__slice = [].slice;
2010-07-29 00:51:35 -04:00
number = 42;
2010-07-29 00:51:35 -04:00
opposite = true;
2012-04-10 14:57:45 -04:00
if (opposite) {
number = -42;
}
2010-07-29 00:51:35 -04:00
square = function(x) {
return x * x;
};
2010-07-29 00:51:35 -04:00
list = [1, 2, 3, 4, 5];
2010-07-29 00:51:35 -04:00
math = {
root: Math.sqrt,
square: square,
cube: function(x) {
return x * square(x);
}
2010-07-29 00:51:35 -04:00
};
2010-11-21 12:38:27 -05:00
race = function() {
var runners, winner;
winner = arguments[0], runners = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
2010-07-29 00:51:35 -04:00
return print(winner, runners);
};
2012-04-10 14:57:45 -04:00
if (typeof elvis !== "undefined" && elvis !== null) {
alert("I knew it!");
}
cubes = (function() {
var _i, _len, _results;
2010-11-21 12:38:27 -05:00
_results = [];
for (_i = 0, _len = list.length; _i < _len; _i++) {
num = list[_i];
_results.push(math.cube(num));
}
return _results;
})();