Skip to main content

print

Syntax Format

print(...)

Overview

The print function prints all the arguments to the script log. The function can be useful for debugging to detect occurred issues.

Example

if value = nan then

print("Value it not a number")

end