You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
angerangel edited this page Mar 19, 2013
·
1 revision
USAGE
JOIN value rest
DESCRIPTION
Concatenates values.
JOIN is a function value.
ARGUMENTS
value -- Base value
rest -- Value or block of values
#SOURCE
join: make function! [ [
"Concatenates values."
value "Base value"
rest "Value or block of values"
][
value: either series? :value [copy value] [form :value]
repend value :rest
] ]