divide function

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

Divide two numbers.

Implementation

num divide(num a, num b) => a / b;