feat: implementa função greet

This commit is contained in:
RodrigoJorge 2022-10-28 14:42:10 -03:00
parent 36363c9660
commit 3cfb8bf78e

View File

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