challenge-algorithms-v2.0-c.../01-greeting/index.js
2022-10-28 07:33:29 -04:00

5 lines
87 B
JavaScript

export function greet(name) {
// implementar logica aqui
return `Hello ${name}`;
}