home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
CMPLTPAS.ZIP
/
PRINTEST.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-12-15
|
261 b
|
15 lines
PROGRAM PrintTest;
USES Printer;
VAR
PrintDevice : Text;
BEGIN
Assign(PrintDevice,'LPT1');
Rewrite(PrintDevice);
Writeln(Printdevice,'This text will now appear on the printer.');
Writeln(LST,'This will too, and it''s easier!')
END.