12345678/** * Say hi to someone * @param name - The name of the person to say hi to * @returns The greeting message */ export function sayHi(name: string): string { return `Hello ${name} !`; }