clear method

void clear()

Clears the entire terminal screen.

Implementation

void clear() {
  backend.write('\x1b[2J');
}