Files
coffeescript/documentation/js/functions.js
2009-12-25 23:17:34 -08:00

9 lines
140 B
JavaScript

(function(){
var cube, square;
square = function(x) {
return x * x;
};
cube = function(x) {
return square(x) * x;
};
})();