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
...anyString or variable to output

Example

print("Hello Debug Console\n")