< Rebol Programming

USAGE:

JOIN value rest 

DESCRIPTION:

Concatenates values.

JOIN is a function value.

ARGUMENTS:

  • value -- Base value (Type: any)
  • rest -- Value or block of values (Type: any)

SOURCE CODE

join: func [
    "Concatenates values." 
    value "Base value" 
    rest "Value or block of values"
][
    value: either series? :value [copy value] [form :value] 
    repend value :rest
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.