void main() { print(calcArea(30, 35)); } calcArea(base, height) { return base * height / 2; }