|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T V
Length: 657 (0x291)
Types: TextFile
Names: »V«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11
└─⟦129cab021⟧ »DATA«
└─⟦this⟧
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;