Skip to content
angerangel edited this page Mar 19, 2013 · 1 revision

USAGE

   NOW /year /month /day /time /zone /date /weekday /yearday /precise /utc

DESCRIPTION

Returns date and time.

NOW is a native value.

REFINEMENTS

  • /year -- Returns year only
  • /month -- Returns month only
  • /day -- Returns day of the month only
  • /time -- Returns time only
  • /zone -- Returns time zone offset from UCT (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 -- High precision time
  • /utc -- Universal time (no zone)

#SOURCE

now: make native! [  [
    "Returns date and time."
    /year "Returns year only"
    /month "Returns month only"
    /day "Returns day of the month only"
    /time "Returns time only"
    /zone "Returns time zone offset from UCT (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 "High precision time"
    /utc "Universal time (no zone)"
] ]
Clone this wiki locally