print
Prints the values given
Signature
> print ...rest --no-newline
Parameters
...rest
: the values to print--no-newline
: print without inserting a newline for the line ending
Examples
Print 'hello world'
> print "hello world"
Print the sum of 2 and 3
> print (2 + 3)