Guest User

Untitled

a guest
Mar 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. declare(strict_types = 1);
  4.  
  5. function writeSecretSentence(string $proie, string $prédateur): string {
  6.  
  7. return "$proie s'incline face à $prédateur";
  8. }
  9.  
  10. echo writeSecretSentence('Biche', 'Tigre');
  11. ?>
Add Comment
Please, Sign In to add comment