public static native print(values... as Object, sep as String, end as String, output as TextWriter)
Prints one or more values to the given output stream.
Application.print("x", 42, sep=" = ")| Parameter | Description |
|---|---|
values | Values to print. |
sep | Separator inserted between values (default: " "). |
end | Terminator appended after the last value (default: "\n"). |
output | Output stream (default: Application.out). |