demark
demark(s,x)
-- given a list of strings
x
and a string
s
provides the string obtained by concatenating the elements of
x
with a copy of
x
inserted between each successive pair.
i1 : demark("+",{"a","b","c"})
o1 = a+b+c
o1 : String