Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. <?php
  2. function writeSecretSentence(string $PARAMETRE_1, string $PARAMETRE_2)
  3. {
  4. $secretSentence = "$PARAMETRE_1 s'incline face à $PARAMETRE_2";
  5.  
  6. return $secretSentence;
  7. }
  8.  
  9. $mots1 = 'Le Chat';
  10. $mots2 = 'la Lune';
  11.  
  12. echo writeSecretSentence($mots1, $mots2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement