feat(triangleArea): Feito segundo exercício

This commit is contained in:
Vinícius Gabriel 2022-10-28 07:42:41 -03:00
parent 6b64b18edd
commit a1ec8d56f1

View File

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