qck.hlp (Table of Contents; 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.
CONST Statement
  Summary  Details  Example                Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
 Declare symbolic constants for use in place of values.
 
    CONST constantname = expression [,constantname = expression]...
 
    ■ constantname    Name of the constant that consists of up to 40
                      characters and begins with a letter; valid characters
                      are A-Z, 0-9, and period (.)
 
    ■ expression      Expression that is assigned to the constant;
                      expression can consist of literals (such as 1.0),
                      other constants, any arithmetic or logical operators
                      except exponentiation (^), or a single literal string
 
 See Also
    Constants Summary