ex.hlp (Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
REM Statement Example
                        Example                Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
' This example shows two equivalent remark statements.
 
' Note: You must precede a REM statement at the end of a line with a colon.
 
 CLS    ' Clear the screen
 REM    This is a comment
 '      This is also a comment
 PRINT "Test1"       ' This is a comment after a PRINT statement
 PRINT "Test2":   REM  This is also a comment after a PRINT statement