feature/algoritmos #1

Merged
caroline_moran merged 12 commits from feature/algoritmos into master 2022-10-28 13:25:52 +00:00
Showing only changes of commit 8a8712c9ae - Show all commits

View File

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