include (1) --- expand include statements 03/20/80 _U_s_a_g_e include _D_e_s_c_r_i_p_t_i_o_n Many Ratfor programs use the Ratfor "include" statement to include a frequently used body of code, such as the standard definition file "=incl=/swt_def.r.i", as part of the source input. This is useful for saving disk space, but is sometimes inconvenient if the programmer wishes to see the entire text of his program. The 'include' command is provided to make this possible. 'Include' copies its stan- dard input to its standard output, while looking for lines that begin with "include", followed by a file name, possibly enclosed in quotes (" or '). If such a line is found, the contents of the named file are inserted in its place and copying continues as before. Files to be included may be nested to a depth of 5. _E_x_a_m_p_l_e_s prog.r> include | pr _M_e_s_s_a_g_e_s "Can't open include" if include file could not be found. _S_e_e _A_l_s_o rp (1), macro (1) include (1) - 1 - include (1)