CALL

Invokes a routine.

Syntax

CALL label;

Syntax Description

label
identifies the starting point for executing a block of statements until a RETURN statement is reached.

Details

The CALL statement causes the statements that are specified after label to be executed until a RETURN statement is encountered. When a RETURN statement is reached, script processing resumes at the statement that is specified after the CALL statement.