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 - downloadIndex: ┃ T V ┃
Length: 1034 (0x40a) Types: TextFile Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧
with Bounded_Strings; package Lexical is type Token is (L_Open, L_Close, L_Comma, L_Point, L_Plus, L_Minus, L_Star, L_Slash, L_Equ, L_Affect, L_Neq, L_Gt, L_Lt, L_Geq, L_Leq, L_Nbr, L_Id, L_Activer, L_Alors, L_Attendre, L_Autemps, L_Avec, L_Binaire, L_Categorie, L_Debut, L_Desactiver, L_Discret, L_Effet, L_En, L_Est, L_Evoluer, L_Experience, L_Faire, L_Fin, L_Fois, L_Fugitif, L_Implantation, L_Jusqua, L_Materiel, L_Mod, L_Modifier, L_Repeter, L_Scene, L_Si, L_Sinon, L_Spectacle, L_Temporel, L_Unk, L_Eof); subtype Lexeme is Bounded_Strings.Variable_Strings (80); procedure Open (File_Name : in String); function At_End return Boolean; procedure Next; function Get return Token; function Value return Lexeme; function Number return Integer; function Line_Number return Positive; function Column_Number return Positive; procedure Close; end Lexical;