home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
XCRT.ZIP
/
CHARNO.PAS
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Pascal/Delphi Source File
|
1988-09-28
|
266 b
|
14 lines
uses Crt;
var c:char;
begin
repeat
gotoXY(10,10); repeat until keypressed;
c := ReadKey;
clreol;
if c = #0 then begin
write('Extended Key Code : ',ord(c),',');
c := ReadKey;
end;
write(ord(c));
until c=#27;
end.