add method

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

Returns the sum of two numbers a and b.

Implementation

num add(num a, num b) {
  return a + b;
}