Merge pull request 'feat/solucao greeting' (#1) from feature/solucao-greeting into development

Reviewed-on: #1
This commit is contained in:
Rafael Sampaio de Oliveira 2022-10-28 11:01:33 +00:00
commit c2426fff15

View File

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