development #11

Merged
NicollyVieira merged 20 commits from development into master 2022-10-28 18:16:57 +00:00
Showing only changes of commit b043539824 - Show all commits

View File

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