subtract function

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

Subtract two numbers.

Implementation

num subtract(num a, num b) => a - b;