Rebol Programming/append
USAGE:
editAPPEND series value /only
DESCRIPTION:
editAppends a value to the tail of a series and returns the series head.
APPEND is a function value.
ARGUMENTS
edit- series -- (Type: series port)
- value -- (Type: any)
REFINEMENTS
edit- /only -- Appends a block value as a block
SOURCE CODE
editappend: func [ {Appends a value to the tail of a series and returns the series head.} series [series! port!] value /only "Appends a block value as a block" ][ head either only [ insert/only tail series :value ] [ insert tail series :value ] ]