InsertConsoleStr(s$)
s$ into the current console
window at the current cursor position. All characters to the right of the cursor are
moved to the right, with the possibility of the rightmost characters on the line
being lost. The cursor is not advanced.
You must enable advanced console mode using EnableAdvancedConsole() before you can use this function. See EnableAdvancedConsole for details.
EnableAdvancedConsole()
InsertConsoleStr("Hello World!")
RefreshConsole()
The code above prints the string "Hello World!" to the console.