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

⟦5431c3fc2⟧ TextFile

    Length: 408 (0x198)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Text_Io;  
with Printer;
package Printer_Inherited is
    type Object is private;
    procedure Set (Un_Nombre : in out Object; Une_Valeur : Natural);
    procedure Print (Un_Nombre : Object);
private  
    type Object is new Natural range 1 .. 1000;  
    procedure Imprimer (Un_Nombre : Object);  
    package Sous_Printer is new Printer (Item => Object, Print => Imprimer);  
end Printer_Inherited;