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

⟦529ac19d2⟧ TextFile

    Length: 579 (0x243)
    Types: TextFile
    Names: »V«

Derivation

└─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16
    └─ ⟦6f12a12be⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Text_Io;
package Document is
    End_Of_Ligne : constant Character := Ascii.Cr;
    End_Of_File  : constant Character := Ascii.Eot;  
    End_Of_Page  : constant Character := Ascii.Ff;
    procedure Open     (Le_Nom : in String);
    procedure Close;  
    procedure Get_Line (Str : out String; Last_Char : out Natural);
    function  Eof             return Boolean;
    function  Number_Of_Lines return Natural;
    Open_Error          : exception;
    Close_Error         : exception;
    Eof_Error           : exception;
    Word_Too_Long_Error : exception;
end Document;