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

⟦c62cb35d5⟧ TextFile

    Length: 256 (0x100)
    Types: TextFile
    Names: »LQ.PAS«

Derivation

└─⟦6bdda2365⟧ Bits:30005253 COMPAS Pascal v2.21 til CR7
    └─ ⟦this⟧ »LQ.PAS« 

TextFile

PROGRAM LQ(OUTPUT);
const
   ESC  = $1B;
VAR
   OUTPUT: TEXT;

begin
   ASSIGN(OUTPUT,'LST:'); REWRITE(OUTPUT);
   write(output,chr(esc),1);
   close(output);
end.

«eof»