<< Prev        Next >>

ID : 6790

Rem

Function

To state a comment.

Syntax

Rem comment

Guaranteed Entry

Comment
Enter a comment string.

Description

Strings entered after "Rem" to the line break are recognized as a comment and not compiled or executed.

Related Terms

Comment

Attention

No comment string is subject to Preprocessor process.

Example

'!TITLE "Stating Comment"
' State a comment in the program
Sub Sample_Rem

  Dim aaa As Integer

  aaa = 2

  Display a REM aaa value
  PrintDbg aaa

End Sub

ID : 6790

<< Prev        Next >>