DataMuseum.dk

Presents historical artifacts from the history of:

Rational R1000/400 Tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Rational R1000/400 Tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download
Index: ┃ T V

⟦43646e992⟧ TextFile

    Length: 1099 (0x44b)
    Types: TextFile
    Names: »V«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Text_Io;
package Binary_Tree is

    type Node_Type is (Activer_Type, Add_Type, Affect_Type, Attendre_Type,
                       Autemps_Type, Avec_Type, Body_Type, Desactiver_Type,
                       Description_Type, Equal_Type, Evoluer_Type,
                       Executer_Type, Expression_Type, Faire_Type,
                       Fixer_Type, Greater_Or_Equal_Type, Greater_Than_Type,
                       L_Description_Type, Less_Than_Type, Less_Or_Equal_Type,
                       Liste_Type, Not_Equal_Type, L_Primitives_Type,
                       L_Valeur_Type, L_Case_Type, Mul_Type, Null_Type,
                       Pour_Type, Puis_Type, Selon_Type, Si_Type,
                       Sinon_Type, Sub_Type, Tant_Que_Type, Valeur_Type);


    type Pstring is access String;
    type Node_Structure;  
    type Node is access Node_Structure;
    type Node_Structure is
        record
            The_Type : Node_Type := Null_Type;
            S : Pstring;
            Left_Son, Right_Son : Node;
        end record;
    procedure Put_Node (The_Node : Node);

end Binary_Tree;