In clean code, we often want function parameters to have descriptive names (like speed or config). However, if a class has a member variable with the exact same name, the parameter "shadows" the member. Writing speed = speed; does nothing (it assigns the parameter to itself).
To fix this, we use the this pointer to explicitly refer to the member variable: this->speed = speed;.
Your task is to implement a class Timer.
Private member: int period (initialized to 0).
Method void setPeriod(int period):
The argument name MUST be period.
You must use this-> to assign the argument to the member.