DataMuseum.dk

Presents historical artifacts from the history of:

CP/M

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

See our Wiki for more about CP/M

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦6401e1327⟧ TextFile

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

Derivation

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

TextFile

program tilfile;
var
 i:integer;
 n:real;
 a:array Æ1..100Å of integer;
 talfil :file of integer;
 begin
 i:=0;
 assign(talfil,'b:xtal.dat');
 rewrite(talfil);
 repeat
 i:=i+1;
 writeln('indtast tallet ');read(aÆiÅ);
 until (aÆiÅ)=0;
write(talfil,aÆiÅ);
close(talfil);
 end.
 
 «eof»