Rem / EndRem

A type of Prefix which allows the developer to separate blocks of code into organized, defined parts to help provide clarity of the logical block and add structure to the code.

Description:

Comments and Remarks are used to document what your source code is doing, for your own benefit at a later date, to help you plan your code as you build it, and for other developers to better understand your code. Using indented Rem / EndRem blocks is highly recommended to provide clairity as to the start and finish of a logical idea in your code.

Example:

'My comment (single line comment)

Rem 'My block indented Remark (multi line comment)
 ...source code lines...
EndRem