feat(01,02): finished

This commit is contained in:
Matheus Brollo Dauter 2022-10-30 21:43:34 -03:00
parent c6f6df9c59
commit 18e42e3908
2 changed files with 2 additions and 1 deletions

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;
}