feat(greeting): algoritmo concluido

This commit is contained in:
Mateus Antonio Rodrigues Lopes 2022-10-31 21:18:30 -03:00
parent c6f6df9c59
commit d1e4ae24b9

View File

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