home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
pascal
/
library
/
dos
/
tjock
/
tot
/
demo
/
demin1.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
|
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.