Name:
#no_end
Syntax:

#NO_END

Description:

Do not automatically add an end command to the end of the program.

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

    Example of #no_end use

    Because the program never reaches the end of the code there is no need to have an 'end' command inserted after the 'goto' command.

    Code Example:
    #no_end
    
    main:	b0 = b0 + 1
    	debug
    	goto main
    Copy Code Submit an Example

    Submit Your Own Code!

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