Operator ACQU
                                             DATE     94/01/10
    Opérateur ACQUERIR
    ------------------                         See also :SAUV 

    ACQUERIR   OBJET1*TYP1  (N1) ( OBJET2*TYP2 ....);

                                 OBJETi=ENTIER,FLOTTANT,MOT
                                        LISTENTI,LISTREEL

    Description :
    ____________

    Inserted into a CASTEM 2000 data set, the ACQUERIR operator
 is used to acquire objects (OBJET1, OBJET2...) from a N2 logical
 unit file defined by:
 
                  OPTION ACQUERIR  N2 ;

    Note 1 :
    _________

   The possible types of objects to be acquired are as follows : 

        - ENTIER
        - FLOTTANT
        - MOT
        - LISTENTI
        - LISTREEL

    You may omit the type of object to be acquired. In this case,
 do not mention the * .

    Note 2 :
    _________

    For LISTENTI or LISTREEL type objects, you must
 provide the N1 (ENTIER type) number of values to be read.


    Note 3 :
    _________

   The file must be composed of 80-characters records. For each
 record, only the first 72 characters are read.


     Example :
     _________

     Considering the following reading file :

     1 ' is smaller than ' 2
     2  times 3 equals 6
     12  34  56 78       90

 the following reading sequence :

        ACQUERIR   I*ENTIER  MM*MOT J*FLOTTANT;
        ACQUERIR   K*ENTIER ;
        ACQUERIR   LL*LISTENTI  5 ;

 leads to :    I =1
               MM= is smaller than
               J =2
               K =2
               LL= 12 34 56 78 90