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

⟦64e7eb6b4⟧ TextFile

    Length: 1761 (0x6e1)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Class_Printer;
with Object;
with Bounded_String;
-- with Message;
-- with Requester;

procedure Essai_Printer (Screen : String) is
    Result : Object.Index;
    Str, Title : Object.Tiny_String;
begin

    Class_Printer.Create;
    Class_Printer.Open (100, 100, Screen);


    for I in 1 .. 37 loop
        Class_Printer.Put ("Essai");
        Class_Printer.Put (" du");
        Class_Printer.Put (" Printer");
        Class_Printer.Put (Integer'Image (I));
        Class_Printer.New_Line;
    end loop;

    Class_Printer.Forward (4);
    for I in 1 .. 23 loop
        Class_Printer.Put ("Forward");
        Class_Printer.Put (Integer'Image (I));
        Class_Printer.New_Line;
    end loop;

    Class_Printer.Backward (4);
    for I in 1 .. 19 loop
        Class_Printer.Put ("BackWard");
        Class_Printer.Put (Integer'Image (I));
        Class_Printer.New_Line (2);
    end loop;

    Class_Printer.Forward (4);
    for I in 1 .. 31 loop
        Class_Printer.Put ("Forward");
        Class_Printer.Put ("Another forward");
        Class_Printer.Put_Tab ("end");
        Class_Printer.Put (Integer'Image (I));
        Class_Printer.New_Line;
    end loop;

    Class_Printer.Forward (4);
    Class_Printer.Put ("Forward");
    Class_Printer.Forward (4);
    Class_Printer.Put ("Forward");
    Class_Printer.Put ("Ceci est une chaine de caracteres qui est trop longue");
    Class_Printer.Put ("Forward");
    Class_Printer.New_Line;
    Class_Printer.Put ("Forward");
    Class_Printer.New_Line;
    Class_Printer.Backward (4);
    Class_Printer.Put ("BackWard");
    Class_Printer.Backward (4);
    Class_Printer.Put ("BackWard");
    Class_Printer.Backward (4);
    Class_Printer.Put ("BackWard");

    Class_Printer.Close;

end Essai_Printer;