DebugPrintNR(...)
This call can be disabled by specifying the ‘-nodebug’ console argument
when running a script or applet. In that case, calling DebugPrintNR()
will
do nothing at all. See Console arguments for details.
Also note that when compiling an applet or executable, debugging will be
automatically disabled unless you explicitly enable it by setting the
EnableDebug
tag to True
in @OPTIONS. So if you have
compiled an applet or executable and you see that DebugPrintNR()
doesn't do
anything, the reason is probably that debugging is disabled.
See DebugPrint for details.
DebugPrintNR("Hello ") DebugPrintNR("World!") DebugPrintNR("\n")This does the same as
DebugPrint("Hello World!")
.