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: ┃ T V

⟦b54c12ab1⟧ TextFile

    Length: 753 (0x2f1)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Easy_Y;
with Object;

package Class_New_Printer is
    procedure Open (X, Y : Object.Index; Screen : String);
    procedure Close;
    procedure Go_Ahead (Number : in Integer);
    procedure Go_Back (Number : in Integer);
    procedure Put (The_String : String);
    procedure Put_Blanck;
    procedure New_Line (Number : Integer := 1);
private
    Colum : Object.Index := 0;
    Line_Number : Object.Index := 1;
    Line_Max : Object.Index := 1;
    Position : Integer := 0;
    Unparse_Window : Easy_Y.Window_Type;
    The_Screen : Object.Tiny_String;
    The_String : Object.Tiny_String;
    The_Left : Object.Index;
    The_Right : Object.Index;
    The_Height : Object.Index := 500;
    The_Width : Object.Index := 400;
end Class_New_Printer;