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

⟦5306d7640⟧ TextFile

    Length: 428 (0x1ac)
    Types: TextFile
    Names: »B«

Derivation

└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04
    └─ ⟦d65440be7⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Lex;
with Text_Io;

procedure Test_Lex is
    Local : Lex.Token := Lex.Token'(Lex.Ok);
begin



    Lex.Open ("My_File");

    while Lex.Token'Pos (Local) /= Lex.Token'Pos (Lex.L_End) loop

        Lex.Next_Token;
        Local := Lex.Get_Token;
        Text_Io.Put (Lex.Get_Value);
        Text_Io.Put (" --> ");
        Text_Io.Put_Line (Lex.Token'Image (Local));

    end loop;
    Lex.Close ("My_File");


end Test_Lex;