Created
March 16, 2018 10:39
-
-
Save Jules59/60c31237caa8c465756dff0e46903d36 to your computer and use it in GitHub Desktop.
fonction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function writeSecretSentence(string $parametre1, string $parametre2) : string { | |
return $parametre1 . "s'incline toujours au ping-pong face à " . $parametre2; | |
} | |
echo writeSecretSentence('Gaëtan', 'Julien'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment