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
\nwhenever you want a new line.
Parameters
| # | Type | Information | 
|---|---|---|
| 1 | string | String to output | 
Example
print("Hello Debug Console\n")