feature: resolve exercício 01-greeting

This commit is contained in:
Andrea Matsunaga 2022-10-30 13:35:40 -03:00
parent c6f6df9c59
commit b5774d589b

View File

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