jashkenas--coffeescript/documentation/js/functions.js

10 lines
141 B
JavaScript
Raw Normal View History

2009-12-21 16:41:45 +00:00
(function(){
2009-12-26 07:17:34 +00:00
var cube, square;
2010-05-15 05:18:05 +00:00
square = function(x) {
2009-12-21 16:41:45 +00:00
return x * x;
};
2010-05-15 05:18:05 +00:00
cube = function(x) {
2009-12-21 16:41:45 +00:00
return square(x) * x;
};
2010-02-24 23:27:10 +00:00
})();