home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / NEXTSTEP / UNIX / Educational / R-0.49-MI / R-0.49-I / help / base / args < prev    next >
Encoding:
Text File  |  1997-04-23  |  646 b   |  27 lines

  1.     
  2.     _A_r_g_u_m_e_n_t _L_i_s_t _o_f _a _F_u_n_c_t_i_o_n
  3.     
  4.          args(fun)
  5.     
  6.     _A_r_g_u_m_e_n_t_s:
  7.     
  8.              fun : an interpreted function.  If fun is a charac-
  9.                    ter string then the function with that name
  10.                    is found and used.
  11.     
  12.     _V_a_l_u_e:
  13.     
  14.          A function with identical formal argument list but an
  15.          empty body.  This function is mainly used interac-
  16.          tively.  For programming, use formals instead.
  17.     
  18.     _S_e_e _A_l_s_o:
  19.     
  20.          formals, help.
  21.     
  22.     _E_x_a_m_p_l_e_s:
  23.     
  24.          args(args) #-> NULL (args is a 'primitive' function).
  25.          args(plot.default)
  26.     
  27.