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

⟦72f0323df⟧ TextFile

    Length: 487 (0x1e7)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Object;
with Scanner;  
with Statements;
with Text_Io;

procedure Test_Parse is

    Root : Statements.Node;
    Parse_Ok : Boolean;
    Interpret_Object : Object.Reference;

begin
    Scanner.Start;
    Scanner.Next_Token;
    Statements.Parse (N => Root, Error => Parse_Ok);
    if Parse_Ok then
        Interpret_Object := Statements.Interpret (N => Root);
    else
        Text_Io.Put_Line ("Parsing Error !!!");
    end if;
    Object.Image (Interpret_Object);

end Test_Parse;