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