writeln method

void writeln(
  1. String s
)

Implementation

void writeln(String s) {
  write(s);
  buf.write('\n');
}