fix: greeting

This commit is contained in:
PATRICK DE SOUZA SILVA 2022-11-02 18:15:02 -03:00
parent 1ceefbae00
commit edb397a036

View File

@ -1,4 +1,4 @@
export function greet(name) {
// implementar logica aqui
return "";
return `Hello ${name}`;
}