Skip to content

Instantly share code, notes, and snippets.

@iArnold
Created March 15, 2016 19:39
Show Gist options
  • Save iArnold/3fac6cdd2aa24c93c25f to your computer and use it in GitHub Desktop.
Save iArnold/3fac6cdd2aa24c93c25f to your computer and use it in GitHub Desktop.
join: func [
"Concatenates values."
value "Base value"
rest "Value or block of values"
][
value: either series? :value [copy value] [form :value]
repend value :rest
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment