Guest User

Untitled

a guest
Aug 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. <?php
  2. function say($phrase) {
  3. print($phrase);
  4. }
  5.  
  6. class Foo {
  7. say('Bars!');
  8. }
  9.  
  10. new Foo();
  11. //=> Bars!
  12. }
Add Comment
Please, Sign In to add comment