print()
Writes the textual representations of the given items into the given output stream.
fn print (
items: any...,
separator := " ",
terminator := os_EOL,
to := "stdout"
) void
items - Items to print.
separator - String separating items. The default is empty string.
terminator - String terminating items. The default is os_EOL
.
to - Output where to write items. Can be stdout
or stderr
. The default is stdout
.