Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 247 Bytes

File metadata and controls

15 lines (12 loc) · 247 Bytes

time Module

Time helpers.

Functions

  • now() -> int: Returns Unix epoch time in milliseconds.
  • sleep(ms int): Sleeps for ms milliseconds.

Example

load time
start = time.now()
time.sleep(100)
out(time.now() - start)