writeInBlack static method

void writeInBlack(
  1. String message
)

writes a message in black.

Implementation

static void writeInBlack(String message) {
  stdout.writeln(message);
}