Function related to debugging
f-debug
The function returns true if debugging is enabled. The value is toggled on each call of procedure p-debugflag. If the function returns true then it signifies the initialization and starting of debugger. Using debugging we can examine data from the procedure we are running, including the names and contents of variables it defines, and also we can modify this data as per the requirement.
ReturnType: Logical
AppliesTo: Data
Used as
This function is used as f-debug().
Example
If f-debug() = true
Message “Debugging is enabled”
Output
It returns the message if the function f-debug() is set to ‘true’.