5 lines
87 B
JavaScript

export function greet(name) {
// implementar logica aqui
return "Hello " + name;
}