home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
msdos
/
animutil
/
fastgfx
/
fg303e
/
expas.arj
/
FGDOC
/
EXAMPLES
/
PASCAL
/
14-02.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
|
1993-09-30
|
243 b
|
19 lines
program main;
uses fgmain, fgmisc;
const
ESC = 27;
var
key, aux : byte;
begin
repeat
begin
fg_waitfor(9);
fg_intkey(key,aux);
writeln('key = ',key:3,' aux = ',aux:3);
end;
until (key = ESC);
end.