ID : 133
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
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 : 133