challenge-algorithms-v2.0-c.../01-greeting/index.js
2022-10-28 06:44:42 -04:00

5 lines
87 B
JavaScript

export function greet(name) {
// implementar logica aqui
return "Hello " + name;
}