call
EXPRESSION.
NAME( EXPRESSION ...)
This form causes the method named to be called with respect to the given object, provided that the class of the given expression has such a method. The expressions following the name are evaluated from left to right and passed in to the method as its arguments. The number and types of the arguments must match from the method's declaration. These values replace the argument names in the body of the method, and the result of the body is the result of this expression.
ProfessorJ Beginner Language