ephemeral method

void ephemeral()

Pushes a new ephemeral console state. All text outputted to the console immidiately after this call will be deleted when the console is cleared.

Implementation

void ephemeral() {
  depth++;
  lines[depth] = 0;
}