// Generated by CoffeeScript 1.7.1 var cube, square; square = function(x) { return x * x; }; cube = function(x) { return square(x) * x; };