What does it do?
My guess is that it prevents you compiling a debug version, but why would you want to?
My guess is that it prevents you compiling a debug version, but why would you want to?
Function MyOftenCalledFunctionThatWouldBeReallySlowInDebugMode() NoDebug
Graphics 640,480,0,0 While Not KeyDown(KEY_ESCAPE) Cls DrawBox() DrawCircle() Flip Wend End Function DrawBox() nodebug DebugStop DrawRect(0,0,100,100) End Function Function DrawCircle() DrawOval(200,200,100,100) End Function