/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

  1. // Generated by CoffeeScript 1.10.0
  2. var cube, square;
  3. square = function(x) {
  4. return x * x;
  5. };
  6. cube = function(x) {
  7. return square(x) * x;
  8. };