Arguments: 1+) string: str
Outputs the given string(s) to the log window.
When more than one string is passed, they will be separated by spaces.
Arguments: 1) string: str 2+) any: values...
Outputs the given string to the log window, formatting it in the same way as C's printf family of functions.
This is equivalent to:WriteLog(StringFormat(str, values...));
Arguments: 1) string: str 2+) any: values...
Outputs the given string to the log window, formatting it in the same way as C's printf family of functions.
This is an alias for WriteLogF.
Arguments: 1+) string: str
Creates an error box with the specified string.
Execution of the script is stopped, closing the script.
When more than one string is passed, they will not be separated by spaces.
Arguments: 1) bool: condition 2) any: value
If the condition is false, raise an error with the specified value and terminate the script.
Return Type: array[string]
Returns an array of all strings that have been internalized by the running scripts.
Arguments: 1) any: value Return Type: real
Returns the internal reference count of the given value if it's a collection type, otherwise always returns 0.
The count returned will be one higher than the actual count, because it includes the temporary reference created when calling this function.
Collection types are: array, string, and table.
Return Type: real
Returns the current amount of memory used by the rdnh process in bytes.
Return Type: string
Returns a string that identifies the build of rdnh (currently, the date as yy.mm.dd)
Return Type: string
Returns the version of the rdnh scripting language as a string in the format: MajorVersion.MinorVersion