multiply function

int multiply(
  1. int a,
  2. int b
)

Multiplies two numbers

Implementation

int multiply(int a, int b) => a * b;