Rebol Programming/now
USAGE:
editNOW /year /month /day /time /zone /date /weekday /yearday /precise
DESCRIPTION:
editReturns the current local date and time.
NOW is a native value.
REFINEMENTS:
edit- /year -- Returns the year only.
- /month -- Returns the month only.
- /day -- Returns the day of the month only.
- /time -- Returns the time only.
- /zone -- Returns the time zone offset from GMT only.
- /date -- Returns date only.
- /weekday -- Returns day of the week as integer (Monday is day 1).
- /yearday -- Returns day of the year (Julian)
- /precise -- Use nanosecond precision
SOURCE CODE
editnow: native[ "Returns the current local date and time." /year "Returns the year only." /month "Returns the month only." /day "Returns the day of the month only." /time "Returns the time only." /zone "Returns the time zone offset from GMT only." /date "Returns date only." /weekday {Returns day of the week as integer (Monday is day 1).} /yearday "Returns day of the year (Julian)" /precise "Use nanosecond precision" ]