Name
InsertConsoleStr -- insert console string (V10.0)
Synopsis
InsertConsoleStr(s$)
Platforms
Linux, macOS, Windows

Function
This function inserts the string specified by 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.

Inputs
s$
string to insert
Example
EnableAdvancedConsole()
InsertConsoleStr("Hello World!")
RefreshConsole()
The code above prints the string "Hello World!" to the console.

Show TOC