log function

void log(
  1. String value
)

Logs the given value to the console

Implementation

void log(String value) => stdout.writeln(value);