Print to buffer (print)
Declaration
print([ arg1, arg2, ... ])
Parameters
- arg1, arg2, ...
Any type, optional, variadic. Converted to text and appended to the print buffer, separated by "\t".
Notes
Example
print("hello world")
print([ arg1, arg2, ... ])
print("hello world")