Log values to the console output.
Syntax
Section titled “Syntax”print [...values]Arguments
Section titled “Arguments”| Name | Type | Description |
|---|---|---|
[...values] |
any |
Values to output, space-separated |
Examples
Section titled “Examples”# Print a stringprint "hello"
# Print multiple valuesprint "count:" 42
# Print variablesset $name "world"print "hello" $name