	
	_A_r_g_u_m_e_n_t _L_i_s_t _o_f _a _F_u_n_c_t_i_o_n
	
	     args(fun)
	
	_A_r_g_u_m_e_n_t_s:
	
	         fun : an interpreted function.  If fun is a charac-
	               ter string then the function with that name
	               is found and used.
	
	_V_a_l_u_e:
	
	     A function with identical formal argument list but an
	     empty body.  This function is mainly used interac-
	     tively.  For programming, use formals instead.
	
	_S_e_e _A_l_s_o:
	
	     formals, help.
	
	_E_x_a_m_p_l_e_s:
	
	     args(args) #-> NULL (args is a 'primitive' function).
	     args(plot.default)
	
