Engine
engine.print
Shared
Prints info on engine's console
Syntax
local status = engine.print(...)To output a much more human-readable representation of supported value types, including structured data such as tables use engine.iprint instead.
Parameters
| Type | Name | Description |
|---|---|---|
... | ... | Values to be printed on console |
Returns
| Type | Name | Description |
|---|---|---|
bool | status | Returns true on successful execution, or false on failure |
Examples
engine.print("Hello", "World", 123) --Hello World 123