Skip to main content

print

This function was added in DSL 1

Description

This function is an alias to PrintOutput that replaces the originally useless print function.

function print(...) --[[ ... ]] end

Parameters

  • ...: any - The values to be printed. Each value will be converted to a string using tostring.

Return Values

None.

Example

print('Hello, world!', 42, true, function() end, {})

See Also