Function current_millis()

← Back to Module time



Module time → current_millis()

Description

Get current Unix timestamp in milliseconds

current_millis()


Parameters

There are no parameters.


Return Value


Usage Example

import time
 
s = current_millis()
' Do stuff
e = current_millis() - s
 
writeln("Elapsed time: " & e & " ms")