Rebol Programming/fifth

From Wikibooks, open books for an open world
Jump to navigation Jump to search

USAGE:[edit | edit source]

FIFTH series 

DESCRIPTION:[edit | edit source]

Returns the fifth value of a series.

FIFTH is an action value.

ARGUMENTS[edit | edit source]

  • series -- (Type: series date port tuple event)

SOURCE CODE[edit | edit source]

fifth: native[
    "Returns the fifth value of a series." 
    series [series! date! port! tuple! event!]
]