Rebol Programming/ajoin
USAGE:
editAJOIN block
DESCRIPTION:
editReduces and joins a block of values into a new string.
AJOIN is a function value.
ARGUMENTS
edit- block -- (Type: block)
(SPECIAL ATTRIBUTES)
edit- throw
SOURCE CODE
editajoin: func [ {Reduces and joins a block of values into a new string.} [throw] block [block!] ][ make string! reduce block ]