home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource Library: Graphics
/
graphics-16000.iso
/
msdos
/
animutil
/
fastgfx
/
fg303d
/
exbas.arj
/
FGDOC
/
EXAMPLES
/
BASIC
/
16-02.BAS
< 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
BASIC Source File
|
1993-09-30
|
346 b
|
21 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
CONST Esc = 27
DIM KeyCode AS STRING*1
DIM AuxCode AS STRING*1
Start& = FGgetclock
DO
Ticks& = FGgetclock
PRINT Ticks&; "ticks since midnight."
PRINT Ticks&-Start&; "ticks since start of program."
PRINT
FGgetkey KeyCode, AuxCode
LOOP WHILE KeyCode <> CHR$(Esc)
END