feature-algorithms #1

Merged
JoseGregorioMataRodriguez merged 10 commits from feature-algorithms into master 2022-10-29 04:37:09 +00:00
Showing only changes of commit 2dfd633655 - Show all commits

View File

@ -1,4 +1,10 @@
export function greet(name) {
// implementar logica aqui
return "";
}
let hello;
if (name)
hello = 'Hello ' + name;
else
hello = 'Adicione um nome na funcão';
return hello;
}