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

⟦c36e06833⟧ TextFile

    Length: 480 (0x1e0)
    Types: TextFile
    Names: »B«

Derivation

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

TextFile

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;