Created
September 26, 2019 09:45
-
-
Save krez69/602e3d478ed75ec22f19e274a9846055 to your computer and use it in GitHub Desktop.
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 $name1, string $name2) : string | |
{ | |
$phrasing = $name1 . " s'incline face à " . $name2; | |
return $phrasing; | |
} | |
$phrasing = writeSecretSentence('dog','moon'); | |
echo $phrasing; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment