logln function

void logln(
  1. String content
)

Implementation

void logln(String content) {
  stdout.write(content + '\n');
}