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

⟦b20382010⟧ TextFile

    Length: 630 (0x276)
    Types: TextFile
    Names: »B«

Derivation

└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
    └─ ⟦129cab021⟧ »DATA« 
        └─⟦this⟧ 

TextFile

with Easy_X, Tiny_Talk;
package body Tiny_X is
    type Tiny_Window is (Open, Close);
    The_Window : Tiny_Window := Close;

    procedure Open (Program_Name : String;
                    Left, Right : Easy_X.Coordinate := 100;
                    Width, Height : Easy_X.Dimension := 800) is
        use Easy_X;
    begin  
        Easy_X.Open (Tiny_Talk.Get_Display, "TinyTalk:" & Program_Name,
                     Left, Right, Width, Height);
        The_Window := Open;
    end Open;

    procedure Close is
    begin  
        if The_Window = Open then
            Easy_X.Close;  
        end if;
    end Close;

end Tiny_X;