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