subtract method

int subtract(
  1. int other
)

Implementation

int subtract(int other) {
  return this - other;
}