Lagoons by @chris-b

  • Random greeting

    by @chris-b · 2 days ago

    function random_greeting( string $name = "World"): string {
        $greetings = [ "Hello", "Hi", "Hey" ];
        return $greetings[ array_rand($greetings) ] . ", " . $name . "!";
    }