# os Library 🖥️

Provides access to some operating system facilities. Note: Many potentially unsafe os functions are blocked in this environment. See the Blocked Functions list. Accessed via os.<function>.

Function Signature Description
os.clock() Returns CPU time used by the program in seconds.
os.date([fmt [, t]]) Returns a string or table containing date/time, formatted by fmt.
os.difftime(t2, t1) Returns the difference in seconds between times t1 and t2.
os.time([table]) Returns the current time, or converts a time table to seconds.