Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

print

The print function is used for debugging and outputs a string to the debug console.

This function cannot be used to format strings, please use string.format for string formatting purposes.

New lines are not automatically appended so make sure to use \n whenever you want a new line.

Parameters

#TypeInformation
1stringString to output

Example

print("Hello Debug Console\n")