comment method

void comment(
  1. String message
)

Prints the given comment.

Implementation

void comment(String message) {
  if (_areCommentsShown) {
    print("\x1B[32m! $message\x1B[0m");
  }
}