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 - download
Length: 421 (0x1a5) Types: TextFile Names: »B«
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦this⟧
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;