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
Index: ┃ B T

⟦51690d924⟧ TextFile

    Length: 710 (0x2c6)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Statements, Object, Scanner, Text_Io;
package body Tiny_Talk is

    type Node_Structure is
        record
            State : Statements.Node := Statements.Empty_Node;
        end record;


    procedure Run is
        N : Node;
        Result : Object.Reference;
        Failed : Boolean;
    begin

        Scanner.Open ("tinytest");
        Scanner.Next;
        N := new Node_Structure;
        Statements.Parse (N.State, Failed);
        if not Failed then  
            Text_Io.Put_Line ("I am going in statements.interpret");
            Result := Statements.Interpret (N.State, Result);
        else
            Text_Io.Put_Line ("Parse has failed");
        end if;


    end Run;
end Tiny_Talk;