challenge-algorithms-v2.0-e.../01-greeting/index.js
2022-10-28 12:10:07 -03:00

5 lines
87 B
JavaScript

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