qp.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.
Assignment Statement
  Simple Statement Contents Index                           Back
 
  <variable access> │ <function identifier> := <expression>
 
  Description
 
    The assignment statement assigns the value of an expression to a
    variable. The data types on either side of the := must be
    compatible.
 
  <variable access>
 
    Kind of Variable Access              Example
    ═════════════════════════════════    ═══════════════════
    A simple variable                    a_var
    An indexed array                     an_array[5]
    A pointer reference                  a_pointer^
    A record element                     a_record.field
    A function that returns a pointer    a_pointer_function^