uce/site/doc/pages/time.txt
2026-06-16 12:21:31 +00:00

16 lines
244 B
Plaintext

:sig
u64 time()
:params
return value : second-accurate current Unix timestamp
:see
>time
:content
Returns the current Unix timestamp as a 64-bit integer with second precision.
:example
print(time() > 0 ? "timestamp\n" : "no timestamp\n");