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

⟦55f2276be⟧ TextFile

    Length: 666 (0x29a)
    Types: TextFile
    Names: »V«

Derivation

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

TextFile

package Banque is
    Alarme : exception;
    subtype Argent is Natural;
    type Clef is limited private;
    procedure Ouvrir_Compte (Compte : in out Clef; Somme : Argent);
    procedure Cloturer_Compte (Compte : in out Clef; Somme : out Argent);
    procedure Deposer (Compte : in Clef; Somme : in Argent);
    procedure Retirer (Compte : in out Clef; Somme : in out Argent);
    function Releve (Compte : Clef) return Argent;
    function Valable (Compte : Clef) return Boolean;
private
    Max : constant := 1000;
    subtype Code_Clef is Integer range 0 .. Max;
    type Clef is
        record
            Code : Code_Clef := 0;
        end record;
end Banque;