home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
PASDEMO2.ZIP
/
TESTKBD2.PAS
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-01-16
|
175 b
|
10 lines
program TestReadyKey;
uses Crt;
var c: char;
begin
c := ReadKey;
if ( c = #0 ) then
writeln( 'Extended key: ', ReadKey )
else
writeln( c );
end.