klyn.Application.print
method
public static native print(values... as Object, sep as String, end as String, output as TextWriter)
Description

Prints one or more values to the given output stream.

Application.print("x", 42, sep=" = ")
Parameters
ParameterDescription
valuesValues to print.
sepSeparator inserted between values (default: " ").
endTerminator appended after the last value (default: "\n").
outputOutput stream (default: Application.out).