EFUN: implode

SYNTAX:
string implode( arr, connector );
  string *arr;
  string connector;

DESCRIPTION:
Implode concatenates all strings found in the array 'arr'. The string
'connector' is put in between each two elements.

RETURN VALUES:
The concatenated string is returned.

SEE ALSO:
explode

EXAMPLE:
string str;

str = implode( ({ "Armageddon", "shouts:", "Shutdown", "in",
  "1", "minute" }), " " );.
// str is now "Armageddon shouts: Shutdown in 1 minute".
