Skip to content

print

Log values to the console output.

print [...values]
Name Type Description
[...values] any Values to output, space-separated
# Print a string
print "hello"
# Print multiple values
print "count:" 42
# Print variables
set $name "world"
print "hello" $name