add function

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

Adds two numbers

Implementation

int add(int a, int b) => a + b;