Language Reference

FINISH Statement

denotes the end of a module

FINISH <module-name>;

where module-name is the name of a user-defined module.

The FINISH statement signals the end of a module and the end of module definition mode. Optionally, the FINISH statement can take the module name as its argument. See the description of the START statement and consult Chapter 5 for further information about defining modules.

Some examples follow:

  
    finish; 
    finish mod1;
 

Previous Page | Next Page | Top of Page