< Rebol Programming

USAGE:

CVS-DATE date 

DESCRIPTION:

Converts CVS date.

CVS-DATE is a function value.

ARGUMENTS

  • date -- (Type: any)

SOURCE CODE

cvs-date: func [
    "Converts CVS date." 
    date
][
    date: parse date none 
    to-date rejoin [date/2 "/" date/3]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.