log function

void log(
  1. String content
)

Implementation

void log(String content) {
  stdout.write(content);
}