Rem (statement)

Syntax

Rem text

Description

Causes the compiler to skip all characters on that line.

Example

Sub Main()
  em This is a line of comments that serves to illustrate the
  Rem workings of the code. You can insert comments to make it more
  Rem readable and maintainable in the future.
End Sub

See Also

' (keyword); Comments (topic).

More information

R