Name
ConsolePrintNR -- print to console without newline (V8.0)
Synopsis
ConsolePrintNR(...)
Function
This does the same as ConsolePrint() but doesn't append a new line character to the string.

See ConsolePrint for details.

Inputs
...
at least one value to print to the console
Example
ConsolePrintNR("Hello ")
ConsolePrintNR("World!")
ConsolePrintNR("\n")
This does the same as ConsolePrint("Hello World!").

Show TOC