print method

void print()

print the entire contents of List.

Listの中身をすべてprintします。

Implementation

void print() {
  for (final tmp in this) {
    core.print(tmp.toString());
  }
}