version 6.0
Compiled application Boolean
Parameter | Type | Description | ||||
This command does not require any parameters | ||||||
Function result | Boolean | Compiled (True), Interpreted (False) |
Description
Compiled application tests whether you are running in compiled mode (True) or interpreted mode (False).
Example
In one of your routines, you include debugging code useful only when you are running in interpreted mode, so surround this debugging code with a test that calls Compiled application:
` ... If (Not(Compiled application)) ` Include debugging code here End if ` ...
See Also