Skip to content

Instantly share code, notes, and snippets.

@Cynnah
Last active October 6, 2019 10:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cynnah/2a42c6d83a152f2d08a531aae78dc06b to your computer and use it in GitHub Desktop.
Save Cynnah/2a42c6d83a152f2d08a531aae78dc06b to your computer and use it in GitHub Desktop.
Quete les fonctions en php
<?php
function writeSecretSentence(string $param1, string $param2):string
{
return $param1 ." s'incline face à ". $param2;
}
echo writeSecretSentence("le serpent", "l'elephant");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment