feat: 01- greeting

This commit is contained in:
Adilson Fernando Neves Ornellas 2022-10-28 17:40:16 -03:00
parent c6f6df9c59
commit e251fd23fc

View File

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