dev #1

Merged
matheusbrollodauter merged 11 commits from dev into master 2022-11-02 16:07:43 +00:00
2 changed files with 2 additions and 1 deletions
Showing only changes of commit 18e42e3908 - Show all commits

View File

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

View File

@ -1,3 +1,4 @@
export function triangleArea(base, height) {
// your code here
return base * height / 2;
}