challenge-algorithms-v2.0-i.../01-greeting/index.js
2022-11-02 10:56:54 -03:00

5 lines
88 B
JavaScript

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