write static method

void write(
  1. String text
)

Writes text to stdout.

Implementation

static void write(String text) => stdout.write(text);