Name:
#no_debug
Syntax:

#NO_DEBUG

Description:

Comment out (ignore) all debug commands after the #no_debug line whilst downloading.

Debug commands are very useful whilst testing a program, but may not be required once the program is finished. #no_debug provides an easy method of disabling all the debug commands so they are not part of the final downloaded program.

Applies To:
All
See Also:
Related Create:
    Share:
    Print:

    Disable debugging

    By adding the #no_debug directive the debug commands in the program will not be executed

    Code Example:
    #no_debug
    
    main:	b1 = b1 + 1
    	b2 = b2 + 2
    	debug
    	pause 1000
    	goto main
    Copy Code Submit an Example

    Submit Your Own Code!

    You must be logged in to submit code examples. Login now.