. For example, to execute the updateSalary method on a Staff object, staffObject, and pass the method an increment value of 1000,
we write:
staffObject.updateSalary(1000)
In a traditional programming language, a message would be written as a function call:
updateSalary(staffObject, 1000)