Function: printsep1
Section: programming/specific
C-Name: printsep1
Prototype: vss*
Help: printsep1(sep,{str}*): outputs its string arguments (in raw format),
separated by 'sep', without ending with a newline.
Doc: outputs its arguments in raw format, without ending with a
newline. The arguments are converted to strings following the rules in
\secref{se:strings}. Successive entries are separated by \var{sep}:
\bprog
? printsep1(":", 1,2,3,4);print("|")
1:2:3:4|
@eprog
%\syn{NO}