Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2.  
  3. function writeSecretSentence(string $animal, string $thing): string
  4. {
  5. return "$animal s'incline devant $thing <br>";
  6. }
  7.  
  8. echo writeSecretSentence('l\'animal', 'la chose');
  9. echo writeSecretSentence('l\'autre animal', 'une autre chose');
  10. echo writeSecretSentence('un dernier animal', 'une chose pas pareille');
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement