print

Synopsis

print([$handle], "text")

prints "text" to the specified handle (with no newline)

Parameters

$handle - the handle to write to (defaults to stdin/stdout)

"text" - the data to write

Examples

print("A spoon"); print(" full of"); print(" sugar..."); println(" helps the medicine go down");

A spoon full of sugar... helps the medicine go down

See Also