PrintError
This function was added in DSL 1
Description
Convert all arguments to strings using tostring
and print them in the console as error text.
function PrintError(...) --[[ ... ]] end
Parameters
...
:any
- The values to be printed. Each value will be converted to a string usingtostring
.
Return Values
None.
Example
PrintError('This is a error message!', 42, true, function() end, {})