criando o codigo da area do triangulo

This commit is contained in:
PATRICK DE SOUZA SILVA 2022-10-28 17:40:11 -03:00
parent a8bb8ff79a
commit 0748773ce8
2 changed files with 2 additions and 1 deletions

View File

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

View File

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