DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T V ┃
Length: 710 (0x2c6) Types: TextFile Names: »V«
└─⟦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⟧
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;