|
GetTickCount
int
GetTickCount()
Return
Value
Retrieves the number of
milliseconds that have elapsed since the system was started.
Parameters
N/A
Remarks
Call this
function to get the number of milliseconds that have elapsed
since the system was started.
Example
The following
example demonstrates the use of GetTickCount.
Println("The
time elapsed ",
GetTickCount())
Output of the example script:
The time elapsed:
1008785361
|