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

⟦15b77bf62⟧ TextFile

    Length: 375 (0x177)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Token;
with Text_Io;
with Lex;

procedure Test_Lex is
    T_Token : Token.Object;
begin
    Lex.Lex_Open ("fich_lex");
    while not Lex.Lex_At_End loop
        Lex.Lex_Next;
        T_Token := Lex.Lex_Get_Token;
        Text_Io.Put (Token.Object'Image (T_Token));
        Text_Io.Put_Line ("    " & Lex.Lex_Get_Value.all);
    end loop;
    Lex.Lex_Close;
end Test_Lex;