TIME
Format: var = TIME
Supported by: Floating Point BASIC 2.2
Similar commands: COMX BASIC V1.00: TIMOUT / TIME
TIME is used to return an integer value of the remaining time since the last TIMER statement. As an example:
10 TIMER=100 20 If TIME<>0 GOTO 20 30 PR "TIME IS OUT"
will set the timer for 100/60 of a second and wait till time is up, then print out the message.