feat: Resolvido questao greeting

This commit is contained in:
ThiagoDuutra 2022-10-28 16:04:05 -03:00
parent c6f6df9c59
commit e8f4b3136e

View File

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