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

⟦3cda94a21⟧ TextFile

    Length: 656 (0x290)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

with Text_Io;
package Action is
    type Object is private;
    function Get_From_File (The_File : Text_Io.File_Type) return Action.Object;
    procedure Set_To_File (The_File : Text_Io.File_Type;
                           The_Action : Action.Object);
    procedure Set_To_Screen (The_Action : Action.Object);
    function Convert_To (The_String : String) return Action.Object;  
    function Image (The_Action : Action.Object) return String;  
    End_Of_Action : constant Character := '.';
private
    Length_Action : constant := 25;
    type Object is
        record
            The_String : String (1 .. Length_Action);
        end record;
end Action;