home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
t_power
/
testlpt.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-01-12
|
235 b
|
16 lines
program TestLPT;
Uses Crt,Lpt;
var
Ch : Char;
begin
WriteLn(Lst,'Hello LPT1!');
WriteLn(Lst,'PI = ',PI:8:6);
Write(Lst,'You picked : ');
Write('Enter any char : ');
Ch := ReadKey;
WriteLn(Lst,Ch);
end.