Returns the current value of an internal millisecond timer.
getTickCount()
returns numeric
Outputs the current value of the internal millisecond timer
writeOutput( getTickCount() )
Outputs the millisecond difference between a starting point and end point
start = getTickCount();
sleep( 1000 );
writeOutput( getTickCount() - start );