RosettaCodeData/Task/Scope-Function-names-and-labels/PL-I/scope-function-names-and-labels.pli
2023-07-01 13:44:08 -04:00

7 lines
355 B
Text

Functions are normally internal to a program. If they are at the nesting level
immediately within the program, they are accessible from anywhere in the program.
Functions can also be encapsuled in a package, and the function name exported.
Functions can be compiled separately, and then linked with a program
in which case they are globally accessible.