Advertisement
Guest User

Untitled

a guest
Jan 8th, 2013
915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. function foo()
  2. {
  3.    if (bar)
  4.      return true;
  5.    else
  6.      return false;
  7. }
  8.  
  9. ipv
  10.  
  11. function foo()
  12. {
  13.    if (bar)
  14.    {
  15.      return true;
  16.    }
  17.    else
  18.    {
  19.      return false;
  20.    }
  21. }
  22.  
  23. of
  24.  
  25. function foo()
  26. {
  27.    if (bar)
  28.    {
  29.      return true;
  30.    }
  31.  
  32.    return false;
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement