sum function

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

Implementation

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