Programming Reference Manual
 
Syntax
 
'#Debug [On|Off]
 
Description
Note: This applies only to CCL (web server)
 
When this tag is applied, it overrules the general debug-flag in the CBBS/32 Web Server. In general, when the debug-option is set, with every .ccl script that is run, it opens the IDE on the console and is paused at the first statement, waiting to be traced.
 
The '#Debug tag either enforces (On) or blocks (Off) the debugging of this specific script, igonoring the debug-option setting in the Web Server. It enables flexibel testing for some scripts, while allowing other script to run without interfering.
 
See Also

Example
'#Debug Off     --this script will not be debugged
 
Sub Main
Debug.Print "HELLO"
End Sub