Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. $animal= 'Bousier ';
  5. $naturalElement = 'boule de crotin ';
  6.  
  7. function writeSecretSentence(string $animal, string $naturalElement)
  8. {
  9. return "$animal s'incline face à $naturalElement";
  10.  
  11. }
  12. echo writeSecretSentence($animal, $naturalElement);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement