This commit is contained in:
Maria Carolina Oliveira da Silva 2022-10-28 22:54:50 -03:00
parent c6f6df9c59
commit 19864847bf

View File

@ -1,4 +1,8 @@
export function greet(name) { export function greet(name) {
// implementar logica aqui console.log(`Hello ${name}`)
return ""; return "Hello " + name;
} }
greet("Maria");
greet("Alvin");
greet("Pedro Lucas");