add function

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

Adds two numbers.

Implementation

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