Skip to content

Instantly share code, notes, and snippets.

@krez69
Created September 26, 2019 09:45
Show Gist options
  • Save krez69/602e3d478ed75ec22f19e274a9846055 to your computer and use it in GitHub Desktop.
Save krez69/602e3d478ed75ec22f19e274a9846055 to your computer and use it in GitHub Desktop.
<?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