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

⟦1c33d77c2⟧ TextFile

    Length: 776 (0x308)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

package Animal is
    type Object is private;

    procedure Eat (A : Object; Passe : Boolean := False);

    function Get_Os_Animal (A : Object) return Natural;  
    function Get_Os_Bird (A : Object) return Natural;
    function Get_Os_Bop (A : Object) return Natural;

    procedure Set_Os_Animal (A : in out Object; V : Natural);  
    procedure Set_Os_Bird (A : in out Object; V : Natural);
    procedure Set_Os_Bop (A : in out Object; V : Natural);


    function Get_Value (S : String) return Natural;

    package Self is
        procedure Eat (A : Object; Passe : Boolean := False);
    end Self;


private
    type Object is
        record
            Os_Animal : Natural;
            Os_Bird : Natural;
            Os_Bop : Natural;
        end record;
end Animal;