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
  • 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).