Difference between revisions of "SysTime"

From Wiki
Jump to: navigation, search
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
{{header|Miscellaneous|ro|Represents the time passed since 01/Jan/1980 UTC (it is timezone independant) in millisecond increments. It can be useful for timing and time calculations. it is also not affected by overflow issues or speedhack tools.}}
+
{{header| Miscellaneous Variables|ro|Represents the time passed since 01/Jan/1980 UTC (it is timezone independant) in millisecond increments. It can be useful for timing and time calculations. it is also not affected by overflow issues or speedhack tools.}}
  
 
==== Example ====
 
==== Example ====

Revision as of 08:52, 27 August 2005

Represents the time passed since 01/Jan/1980 UTC (it is timezone independant) in millisecond increments. It can be useful for timing and time calculations. it is also not affected by overflow issues or speedhack tools.

Example


set %startTime #sysTime
for %testLoop 1 1000
{
  set %testCnt %testCnt + 1
}
set %endTime %startTime - #sysTime
Display ok time elapsed in milliseconds: , #spc , %endTime
halt

See also

Main Page Documentation