Syntax
rconsolecreate()Aliases
consolecreateDescription
Allocates a Windows console for the process when no console window exists. If a console window already exists, the call returns without doing anything. The function redirects stdout to console output and stdin to console input after allocation.
Call it without parameters. The function reads the needed context from the current runtime state.
It does not return data. Treat the call as an action and handle errors around the call site when needed.
Example
Create the Windows console once before writing console output.
rconsolecreate()
rconsoleprint("Console ready")