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: 480 (0x1e0) Types: TextFile Names: »B«
└─⟦2f6cfab89⟧ Bits:30000547 8mm tape, Rational 1000, !projects 94-01-04 └─ ⟦d65440be7⟧ »DATA« └─⟦this⟧
separate (Getstring) function Readstring return String is C : Character; begin if End_Of_Line then Skip_Line; return ""; else Get (C); return C & Readstring; end if; loop declare Resultat : constant String := Readstring; begin if Resultat'Length /= 0 then Put_Line (Resultat); exit; end if; end; end loop; end Readstring;