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 - download
Length: 428 (0x1ac) Types: TextFile Names: »B«
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦this⟧
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;