Rem Ü
   ßßßß
 Enables you to include comments (remarks) in a batch file or in
 CONFIG.SYS.  FreeDOS ignores any batch command or CONFIG.SYS line that
 begins with REM.

 Syntax: REM [comment]
   comment  Specifies any string of characters you want to include as
            a comment

 Using the echo command to display comments
 The rem command does not display comments to the screen.  You must use
 the echo on command in your batch or CONFIG.SYS file in order to display
 comments on the screen.

 Restrictions
 You cannot use a redirection character (> or <) or pipe (|) in a batch-
 file comment.

 Example:
   REM This will load fastflop.sys
   device=c:\fastflop.sys

 See Also:
   Echo