< Rebol Programming  
        
      USAGE:
NOW /year /month /day /time /zone /date /weekday /yearday /precise
DESCRIPTION:
Returns the current local date and time.
NOW is a native value.
REFINEMENTS:
- /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
now: 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"
]
    This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.