/documentation/js/functions.js
http://github.com/jashkenas/coffee-script · JavaScript · 10 lines · 7 code · 2 blank · 1 comment · 0 complexity · ef5ba47d4b325e2ee0ec390551519b2a MD5 · raw file
- // Generated by CoffeeScript 1.10.0
- var cube, square;
- square = function(x) {
- return x * x;
- };
- cube = function(x) {
- return square(x) * x;
- };