# 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

|  #  | Type  | Information      |
|-----|-------|------------------|
| ... | any   | String or variable to output |

## Example
```lua
print("Hello Debug Console\n")
```
