feat/solucao greeting

This commit is contained in:
Rafael Sampaio de Oliveira 2022-10-28 08:00:42 -03:00
parent c6f6df9c59
commit 28b2daec0b

View File

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