%Rem directive (LotusScript® Language)

Indicates one or more comment lines in a script.

Syntax

%Rem

text

%End Rem

Elements

text

One or more lines of text that LotusScript® ignores.

Usage

The compiler ignores all text between %Rem and %End Rem, including text on the same line.

%Rem and %End Rem must each be the first text on a line (they may be preceded on the line by spaces or tabs). Each must be followed by one or more spaces, tabs, or newline characters before any more text appears.

%Rem...%End Rem blocks cannot be nested.

Note: For compatibility with older versions of the language, LotusScript® Release 3 accepts the directive %EndRem (with no space) in place of %End Rem.

Example