writeInBlack static method

dynamic writeInBlack(
  1. String message
)

writes a message in black.

Implementation

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