Name
DebugPrintNR -- print to debug device without newline (V6.1)
Synopsis
DebugPrintNR(...)
Function
This does the same as DebugPrint() but doesn't append a new line character to the string.

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.

Inputs
...
at least one value to print to the debug device
Example
DebugPrintNR("Hello ")
DebugPrintNR("World!")
DebugPrintNR("\n")
This does the same as DebugPrint("Hello World!").

Show TOC