Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. def double(x):
  2. return 2 * x;
  3.  
  4. // 1
  5. double(4) + double(10);
  6.  
  7. // 2
  8. 8 + double(10);
  9.  
  10. // 3
  11. 8 + 20;
  12.  
  13. // 4
  14. 28;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement