Skip to content

Instantly share code, notes, and snippets.

@sele-nap
Created March 24, 2022 21:57
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 sele-nap/8b5db7c20c08e3dc1c8db2dcc57e305c to your computer and use it in GitHub Desktop.
Save sele-nap/8b5db7c20c08e3dc1c8db2dcc57e305c to your computer and use it in GitHub Desktop.
WCS quest // 6. Les fonctions avec PHP
<?php
function writeSecretSentence (string $animal ,string $object ) : string
{
return $secretSentence = "$animal s'incline face à $object";
}
echo writeSecretSentence ("le chat" , "la terre");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment