diff --git a/beginning.php b/beginning.php index 4e55b4a..30003c9 100644 --- a/beginning.php +++ b/beginning.php @@ -2,5 +2,17 @@ $variable1 = 'endmove'; -echo "Bonjour $variable1"; +$variable2 = 'gashila'; + +hello($variable1, 19); +hello($variable2, 20); + + + + +function hello(string $pseudo, int $age) : void +{ + echo "Bonjour $pseudo tu as $age ans !
"; +} +