<?php

if (!function_exists('helloWorld')) {
    function helloWorld(string $name): string
    {
        return "hello world: $name";
    }
}
