Merge branch 'feature/trianglearea' into development

This commit is contained in:
Gabriel Ferreira Lehmann 2022-10-30 01:22:01 -03:00
commit 583b67b908

View File

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