
export default async function sayHi(firstName: string): Promise<string>
{
    return `Hi ${firstName}`;
}
