Skip to main content

PrintSpecial

This function was added in DSL 5

Description

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

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

Parameters

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

Return Values

None.

Example

PrintSpecial('This is a special message!', 42, true, function() end, {})