Include a file: Difference between revisions

Content added Content deleted
(→‎{{header|REXX}}: Compiler supports %INCLUDE)
m (→‎{{header|ooRexx}}: remove blank lines)
Line 551:
=={{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>
::requires "regex.cls"
</lang>
 
=={{header|OpenEdge/Progress}}==