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.
Variables Summary
                                                 Contents  Index  Back
──────────────────────────────────────────────────────────────────────────────
 Variables Summary
 
 ■ Variables are used to store data that can change as the application runs.
   Each variable has a unique name that identifies it within its level of
   scope. See: Scope Rules
 
 ■ A group of variables that share a common name is called an array. Each
   element of an array has a unique index number (or subscript) that
   identifies it.
 
   See: Array Storage Summary           Assigning Values to Variables
        Automatic and Static Variables  Declaring Array Variables
        Declaring Simple Variables      OPTION EXPLICIT Statement
        STATIC Statement                SWAP Statement
        Variable Naming Conventions     Variable Storage and Memory Use