feat(greet): Template string, funcional em todos os testes.

This commit is contained in:
Ramon Dias Ferreira 2022-10-28 14:04:06 -03:00
parent c6f6df9c59
commit 3788117b51

View File

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