const helloFn = (name: string): string => { return `Hola ${name}` }; console.log(helloFn("Mundo"));