challenge-algorithms-v2.0/01-greeting/index.js
2022-11-02 18:15:02 -03:00

5 lines
87 B
JavaScript

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