Equinox Online Help - Language Reference - A to Z

Home

Timer64

Applies to
SyntaxTimer64
Action[Function] Returns a 64 bit value containing the number of microseconds (millionths of a second) since the timer was initialised when Equinox was launched.
ScopeUsable anywhere.
Notes

The value returned by this function is not comparable with that returned by the Timer function.

CategoryTime handling
See Also Now, Timer, TimeElapsed, TimeStart, TimedOut
Example
int64 start, taken
int i

start = timer64
for i = 1 to 1000000
next
taken = timer64 - start
print "test took", str(taken,,,4), "microseconds"