How to Call a Compiled Program
Documentation | Blog | Demos | Support
How to Call a Compiled Program
0 out of 5 stars
5 Stars | 0% | |
4 Stars | 0% | |
3 Stars | 0% | |
2 Stars | 0% | |
1 Stars | 0% |
A compiled program is called in the same manner as any other application program. For example, if you have compiled a procedure program called RunTest, call it as follows
RunTest ()
Appropriate expressions would be entered within the parentheses (if required).
If it is necessary to run a program disregarding its compilation, the command:
SET RUNTIME ON/OFF
temporarily enables or disables the execution of compiled programs.
Normally RUNTIME is ON, and, when a compiled version of an application program is available, the compiled version is executed.
When RUNTIME is set OFF, the compiled versions of all affected application programs are ignored. RUNTIME can affect all application programs subsequently executed, or only those called from the current procedure.
0 out of 5 stars
5 Stars | 0% | |
4 Stars | 0% | |
3 Stars | 0% | |
2 Stars | 0% | |
1 Stars | 0% |