Vital.sandbox
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

TypeNameDescription
......Values to be printed on console

Returns

TypeNameDescription
boolstatusReturns true on successful execution, or false on failure

Examples

engine.print("Hello", "World", 123) --Hello World 123

On this page