Include a file: Difference between revisions

Content added Content deleted
Line 218:
* are usually compiled to separate assemblies) can 'see' all other code within that assembly.
*/</lang>
 
=={{header|Clipper}}==
The inclusion of other files is achieved via a preprocessor. The <code>#include</code> preprocessor directive tells the compiler to incorporate code from the included file. This is normally used near the top of a source file and is usually used to tell the compiler to include header files for the function libraries.
<lang clipper> #include "inkey.ch" </lang>
 
=={{header|COBOL}}==