Feb 2009 -- Due to time pressures, the ongoing development of 'rope' has been suspended temporarily.

ROPE Language Reference - "print"

The "print" action takes one (if called without AnchorBrackets) or more (if called with AnchorBrackets) items from the top of the stack and prints them to stderr (when called in UserLand) or the SysLog mechanism (when called in KernelLand). The printed message does not end with a newline character. If you want to throw a new line at the end of the print, use println instead.

Examples..

print( "hello" )
"hello" print
print( "The answer is " $a )

See Also

println