infoLn method

void infoLn(
  1. String message
)

Append the current info line with message and start the next line.

Implementation

void infoLn(final String message)
{
  stdout.writeln(message);
}