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

⟦e5934c806⟧ TextFile

    Length: 421 (0x1a5)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

with Text_Io;

use Text_Io;

procedure Getstring is

    type Jour is (Lundi, Mardi, Mercredi, Jeudi, Vendredi, Samedi, Dimanche);
    J : Jour;

    function Readstring return String is separate;
begin
    loop
        begin
            J := Jour'Value (Readstring);
            exit;
        exception
            when Constraint_Error =>
                Put_Line ("erreur");
        end;
    end loop;
end Getstring;