Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.12 KB | None | 0 0
  1. // function abstraction
  2. cube = function($x) {
  3.     return $x * $x * $x;
  4. }
  5.  
  6. // function application
  7. three_cubed = cube(3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement