	
	_C_o_n_c_a_t_e_n_a_t_e _S_t_r_i_n_g_s
	
	     paste(..., sep=" ", collapse)
	
	_D_e_s_c_r_i_p_t_i_o_n:
	
	     paste converts its arguments to character strings, and
	     concatenates them (separating them by the string given
	     by sep).  If a value is specified for collapse, the
	     values in the result are then concatenated into a sin-
	     gle string, with the elements being separated by the
	     value of collapse.
	
	     The concatenated value is returned as the value of
	     paste.
	
	_S_e_e _A_l_s_o:
	
	     substr, nchar, strsplit
	
