DataMuseum.dk

Presents historical artifacts from the history of:

Jet Computer Jet80

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

See our Wiki for more about Jet Computer Jet80

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦ce5aca9f6⟧ TextFile

    Length: 512 (0x200)
    Types: TextFile
    Names: »INDREAL.PAS«

Derivation

└─⟦692ac107c⟧ Bits:30005923 PolyPascal-80 V3.10 arbejdsdiskette 1
    └─ ⟦this⟧ »INDREAL.PAS« 

TextFile

program talreal;
var
  ch : CHAR; 
  laes : integer;
  talfil :file of integer;
  begin
  write(clrhom);
      write('Indtast tallene '); 
      assign(talfil,'b:talreal.dat');
        reset(talfil);
        seek(talfil,length(talfil));  
        repeat
         read(laes);
         writeln;
         write(talfil,laes);
         read(kbd,ch);
        until ch='q';
        close(talfil);
   end.      «eof»