mul method

void mul(
  1. int val
)

Multiply

Implementation

void mul(int val) {
  _val = _val * val;
}