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 / stop < prev    next >
Encoding:
Text File  |  1997-04-23  |  405 b   |  20 lines

  1.     
  2.     _S_t_o_p _F_u_n_c_t_i_o_n _E_x_e_c_u_t_i_o_n
  3.     
  4.          stop(message)
  5.     
  6.     _D_e_s_c_r_i_p_t_i_o_n:
  7.     
  8.          stop stops execution of the current expression, prints
  9.          the message given as its argument and then returns to
  10.          the top level prompt.
  11.     
  12.     _S_e_e _A_l_s_o:
  13.     
  14.          warning.
  15.     
  16.     _E_x_a_m_p_l_e_s:
  17.     
  18.          if(iter > 10) stop("too many iterations")
  19.     
  20.