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 - downloadIndex: ┃ B T ┃
Length: 789 (0x315) Types: TextFile Names: »B«
└─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦this⟧ └─⟦a7d1ea751⟧ Bits:30000550 8mm tape, Rational 1000, !users!projects 94_04_11 └─ ⟦129cab021⟧ »DATA« └─⟦e24fb53b7⟧ └─⟦this⟧
with Text_Io; use Text_Io; package body Calculator is function Must_Keep_The_Fact return Boolean is Reponse : Character; Ok, Valid_Response : Boolean; begin loop Put ("Faut-il conserver ce fait ? (o/n) : "); Get (Reponse); Put_Line (""); case Reponse is when 'o' | 'O' => Ok := True; Valid_Response := True; when 'n' | 'N' => Ok := False; Valid_Response := True; when others => null; end case; exit when Valid_Response; end loop; return Ok; end Must_Keep_The_Fact; end Calculator;