Commenting a module

To add a summary to a module, add #+ lines at the beginning of the source, before module element declarations such as variables, types, constants and functions.

The #+ lines of the module source comment must appear at the top of the source.

Example

#+ This module implements customer information handling
#+
#+ This code uses the 'customer' and 'custdetail' database tables.
#+ Customer input, query and list handling functions are defined here.
#+
DEFINE r_cust RECORD
   cust_id INTEGER,
   cust_name VARCHAR(50),
   cust_address VARCHAR(200)
END RECORD