subtract function

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

Subtracts two numbers

Implementation

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