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

⟦159970bc0⟧ TextFile

    Length: 478 (0x1de)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Class_Integer;
with Bounded_String;
with Object;
with Text_Io;

procedure Schomll_Talk is
    Objet : Object.Reference;
    Message : Bounded_String.Variable_String (80);
begin
    Bounded_String.Copy (Message, "En_Texte");  
    Text_Io.Put ("Message =");
    Text_Io.Put (Bounded_String.Image (Message));
    Text_Io.New_Line;

    Objet := Object.Create (Class => Object.Integer_Class, Object => 5);

    Objet := Class_Integer.Send (Message, Objet);

end Schomll_Talk;