mirror of
https://github.com/lcn2/calc.git
synced 2025-08-16 01:03:29 +03:00
28 lines
347 B
Plaintext
28 lines
347 B
Plaintext
NAME
|
|
time - number of seconds since the Epoch
|
|
|
|
SYNOPSIS
|
|
time()
|
|
|
|
TYPES
|
|
return int
|
|
|
|
DESCRIPTION
|
|
The time() builtin returns the number of seconds since the Epoch,
|
|
which according to Posix is:
|
|
|
|
Thr Jan 1 00:00:00 UTC 1970
|
|
|
|
EXAMPLE
|
|
> print time();
|
|
831081380
|
|
|
|
LIMITS
|
|
none
|
|
|
|
LIBRARY
|
|
none
|
|
|
|
SEE ALSO
|
|
ctime, runtime
|