add method

int add(
  1. int other
)

Implementation

int add(int other) {
  return this + other;
}