NAME
	implode - implode an array of strings

SYNTAX
	string implode(string *a, string delimeter);
	or
	a * delimeter

DESCRIPTION
	This function is the inverse of explode. It contatenates all the
	strings in a with a delimeter in between each. If no delimeter is
	given, an empty string will be used.

EXAMPLES
	> implode( ({ "foo","bar","gazonk"}), "-" );
	Result: foo-bar-gazonk
	> implode( ({ "f","o","o" }) );
	Result: foo
	> ({ "a","b","c" })*" and ";
	Result: a and b and c
	> 

SEE ALSO
	explode
	