multiply function

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

Multiply two numbers.

Implementation

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