Stop works without debug

Blitz3D Forums/Blitz3D Bug Reports/Stop works without debug

The Stop command stops the program, even when not in Debug mode. This is irritating and improper, and completely destroys the usefulness of the command because it means that if I forget to remove a little debugging function I may end up releasing a program that freezes for no reason. It also means that when testing quickly with debug mode, then quickly compiling for another test in non-debug mode, it will freeze.
;Try this code with, and then without, debug mode.
Print "Start"
Stop
Print "Finish"
Delay 500