# prints
prints(value...)
Source (opens new window)
Print each given value as text, separated by spaces.
// Without Assistant
print("Time remaining: " + string(seconds_remaining) + " seconds")
// With Assistant
print("Time remaining:", seconds_remaining, "seconds")
Parameters:
- Any number of:
value
: Any value to print. Will be converted to a string automatically.