2010-09-21 23:58:05 -04:00
|
|
|
var _i, _len, _ref, _result, cubes, list, math, num, number, opposite, race, square;
|
2010-07-29 00:51:35 -04:00
|
|
|
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);
|
2009-12-23 19:42:18 -05:00
|
|
|
}
|
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() {
|
2010-09-21 23:58:05 -04:00
|
|
|
_result = []; _ref = list;
|
|
|
|
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
|
|
|
num = _ref[_i];
|
|
|
|
_result.push(math.cube(num));
|
2010-01-05 00:34:18 -05:00
|
|
|
}
|
2010-09-21 23:58:05 -04:00
|
|
|
return _result;
|
2010-07-29 00:51:35 -04:00
|
|
|
})();
|