	
	_C_o_n_c_a_t_e_n_a_t_e _a_n_d _P_r_i_n_t
	
	     cat(... , sep="")
	
	_V_a_l_u_e:
	
	     cat converts its arguments to character strings, con-
	     catenates them, separating them by the given sep=
	     string, and then prints them.
	
	     cat is useful for producing output in user defined
	     functions.
	
	_E_x_a_m_p_l_e_s:
	
	     # print an informative message
	     cat("iteration = ",iter,"\n")
	
