Skip to main content

PrintOutput

This function was added in DSL 1

Description

Convert all arguments to strings using tostring and print them in the console as output text.

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

Parameters

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

Return Values

None.

Example

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