Upgrade to Pro — share decks privately, control downloads, hide ads and more …

UPRB Basic Workshop

UPRB Basic Workshop

José Padilla

March 05, 2013
Tweet

More Decks by José Padilla

Other Decks in Technology

Transcript

  1. Mac

  2. PHP

  3. var cube, square; square = function(x) { return x *

    x; }; cube = function(x) { return square(x) * x; };
  4. var fill; fill = function(liquid) { if (liquid == null)

    { liquid = "coffee"; } return "Fill it with" + liquid + "..."; };