infoC method

void infoC(
  1. String message
)

Rewrite the current info line with message.

Implementation

void infoC(final String message)
{
  clearInfo();
  stdout.write(message);
}