Comments 

 

Comments are non-executed lines of code which are included for the benefit of the programmer.  Comments can be included virtually anywhere in a script.  Any text following an apostrophe or the word Rem is ignored by Enable.  Rem and all other keywords and most names in Enable are not case sensitive

 

   '     This whole line is a comment

   rem      This whole line is a comment

   REM      This whole line is a comment

   Rem      This whole line is a comment

     

Comments can also be included on the same line as executed code:

 

      MsgBox Msg   ' Display message.

 

Everything after the apostrophe is a comment.