Console

Printing to Standard Output

The following functions are defined in the initialize file (/init.pnut). The names of functions are simillar to methods of PrintWriter class.

print(object)
println(object)
write(array, offset, length)
write(array)
flush()

print() displays object's representation. println() appends "line.separator" to the stream. write() just calls a method "write" of the stream class.

Reporting errors

error(string)

error() displays error message.


Ìá¤ë