DataMuseum.dk

Presents historical artifacts from the history of:

RC4000/8000/9000

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about RC4000/8000/9000

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦d4fa23e0b⟧ TextFile

    Length: 768 (0x300)
    Types: TextFile
    Names: »tremovenld«

Derivation

└─⟦667bb35d6⟧ Bits:30007480 RC8000 Dump tape fra HCØ.
    └─⟦4334b4c0b⟧ 
        └─⟦74e8651f1⟧ »div« 
            └─⟦this⟧ 

TextFile

begin
comment this program:
        removes all occurences of more than 1
        new line char, following each other.
        ;
integer char;
repeat
  readchar(in,char);
  while char <> 'nl' do
    begin
    outchar(out,char);
    readchar(in,char);
    end;
  outchar(out,char);
  repeat
    if char <> 'em' then                 
      readchar(in,char);
  until char <> 'nl' or char = 'em';
  outchar(out,char);
until char = 'em';
fpproc(7,0,0,0);
end;
▶EOF◀