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

  1.     
  2.     _C_o_n_c_a_t_e_n_a_t_e _a_n_d _P_r_i_n_t
  3.     
  4.          cat(... , sep="")
  5.     
  6.     _V_a_l_u_e:
  7.     
  8.          cat converts its arguments to character strings, con-
  9.          catenates them, separating them by the given sep=
  10.          string, and then prints them.
  11.     
  12.          cat is useful for producing output in user defined
  13.          functions.
  14.     
  15.     _E_x_a_m_p_l_e_s:
  16.     
  17.          # print an informative message
  18.          cat("iteration = ",iter,"\n")
  19.     
  20.