DataMuseum.dk

Presents historical artifacts from the history of:

Bogika Butler

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

See our Wiki for more about Bogika Butler

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦cd011202e⟧ TextFile

    Length: 384 (0x180)
    Types: TextFile
    Names: »TEST1.PAS«

Derivation

└─⟦398ae89d3⟧ Bits:30009789/_.ft.Ibm2.50007353.imd Mogens Pelles Zilog 80,000 / EOS projekt
    └─⟦this⟧ »TEST1.PAS« 

TextFile



   VAR
      f: file;
      size: integer;
      name: string(.14.);
      pos: integer;

  BEGIN
   write(output, 'Enter file name: ');
   readln(input, name);
   assign(f, name);
   reset(f);
   size := filesize(f);
   writeln(output, 'size is ', size:4);
   readln(input, name);
  END.«eof»