Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 478 Bytes

File metadata and controls

18 lines (12 loc) · 478 Bytes

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
1 string String to output

Example

print("Hello Debug Console\n")