No Parameters
VALUE(INTEGER) | The current system time. |
This function returns the current system time as milliseconds since the UNIX Epoch, which is January 1, 1970 12:00:00.000 AM GMT+00:00.
world
{
start()
{
textln("The current UNIX time is " + time() + ".");
quit;
}
}
TimeFormat() — Converts the time to a human-readable string.
The number returned is technically the UTC version of your current system time, which is unaffected by the user's locale.