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

⟦2a4e2e74e⟧ TextFile

    Length: 710 (0x2c6)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

package Record_Type is

    type Colour is (Red, Green, Blue);

    type Red_Value   is new Natural range 0 .. 100;
    type Green_Value is new Natural range 0 .. 100;
    type Blue_Value  is new Natural range 0 .. 100;

    type Blue_Values is array (Natural range <>) of Blue_Value;

    type Object (Size : Natural := 0; The_Colour : Colour := Red) is
        record  
            case The_Colour is
                when Red =>
                    The_Red_Value : Red_Value;
                when Green =>
                    The_Green_Value : Green_Value;
                when Blue =>
                    The_Blue_Values : Blue_Values (1 .. Size);
            end case;
        end record;

end Record_Type;