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: ┃ B T

⟦9ef396507⟧ TextFile

    Length: 1007 (0x3ef)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Animal;
with Bird;
with Bird_Of_Prey;
with Fish;
with Foot;
with Nest;
with Text_Io;

procedure Test_Animals is
    B1 : Bird.Object := Bird.Create;
    Bop1 : Bird_Of_Prey.Object := Bird_Of_Prey.Create;
    -- F1 : Fish.Object := Fish.Create;
    -- N1 : Nest.Object := Nest.Create;

    A : Animal.Object := Animal.Create;
    -- Masse : Positive;
    -- Fo : Foot.Object := Bird.Get_Feet (Bird.Object (Bop1));


begin

    -- Animal.Set_Mass (This_Animal => A, Kg => 33);
    -- Bird.Set_Mass (This_Animal => B1, Kg => 3);
    -- Bird.Set_Nest (B1, N1);
    -- Fish.Set_Fin (This_Fish => F1, Number => 5);
    -- Bird_Of_Prey.Set_Mass (This_Animal => Bop1, Kg => 9);
    -- Bird_Of_Prey.Set_Nest (Bop1, N1);
    -- Bird_Of_Prey.Imag (Bop1);
    -- Bird.Set_Feather (This_Bird => B1, Number => 502);
    -- Bird.Image (B1);

    Animal.Sleep (Animal.Object (Bop1));
    Bird_Of_Prey.Sleep (Bop1);  
    Animal.Sleep (A);
    Bird.Sleep (B1);

    -- Bird.Delete (B1);

end Test_Animals;

pragma Main;