: feat(triangleArea): adicionando funcionalidade

This commit is contained in:
Victor Cardoso de Souza 2022-10-31 11:47:02 -03:00
parent 9af48904cc
commit 10363ad614
2 changed files with 2 additions and 2 deletions

View File

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

View File

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