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