multiply function

void multiply(
  1. num x,
  2. num y
)

Implementation

void multiply(num x, num y) {
  return x + y;
}