home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
msdos
/
animutil
/
fastgfx
/
fg303e
/
expas.arj
/
FGDOC
/
EXAMPLES
/
PASCAL
/
16-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
|
380 b
|
24 lines
program main;
uses fgmain, fgmisc;
const
ESC = 27;
var
start, ticks : longint;
key, aux : byte;
begin
start := fg_getclock;
repeat
begin
ticks := fg_getclock;
writeln(ticks,' ticks since midnight');
writeln(ticks-start,' ticks since start of program.');
writeln;
fg_getkey(key,aux);
end;
until (key = ESC);
end.