Procedure call statement
SYNTAX:
Â
procedure_call_stmt = ( built_in_procedure | procedure_ref )Â Â Â [ actual_parameter_list ] ';' .
actual_parameter_list = '(' parameter { ',' parameter } ')' .
parameter = expression .
The procedure call statement invokes a procedure. The actual parameters provided with the call shall agree in number, order and type with the formal parameters defined for that procedure.
Rules and restrictions:
The actual parameters passed shall be assignment-compatible with the formal parameters.
Example:
(* A call of the built-in procedure insert . *)
INSERT (point_list, this_point, here );