| 
    
   | 
   | 
  
     
    
    
Allows you to add comments to an XEQ file.
    
     
  CO[MMENT] text
 
    
     
  - text
 
  is a string of up to 698 characters. A comment can be continued with
      an ampersand.  
 
    
     
    
The COMMENT command cannot be embedded with the DEFINE, DATA-BASE=, REPORT,
ALTER, or UPDATE ADD commands since it will be interpreted as input.
    
     
  COMMENT  ------------------------------------------------&
            This retrieves all the accounts in Salt Lake City&
            and reports the account number and shipping date.
  COMMENT  ------------------------------------------------
  FIND ACCOUNT.CITY="05"
  REPORT
  H1,"SALT LAKE CITY ACCOUNTS:",50
  H2,"",50,SPACE A2
  H1,DATE,70
  S,ACCTNUM
  D1,ACCTNUM,20
  D1,SHIPDATE,40
  END
    
    
     
    
     
   |