Include a file: Difference between revisions

Line 184:
In compile mode (compiled to bytecode or compiled to native code) we can use:
<lang ocaml>include Name_of_a_module</lang>
 
=={{header|ooRexx}}==
ooRexx has a package system and no ability for textual inclusion of other text files. Importing of other packages is done via the ::requires directive.
<lang ooRexx>
::requires "regex.cls"
</lang>
 
=={{header|OpenEdge/Progress}}==