home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
PASCAL
/
TJTOT10B.ZIP
/
DEMO.EXE
/
arc
/
DEMIN1.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1991-02-11
|
336 b
|
17 lines
Program DemoInputOne;
{DEMIN1}
Uses CRT,
totINPUT;
begin
Clrscr;
Writeln('Press any key or mouse button combination. (Esc to quit)');
Key.SetDouble(true);
repeat
Key.GetInput;
GotoXY(1,2);
Write('You press key: ',Key.LastKey,' ');
until Key.LastKey = 27;
end.