home method
void
home()
Moves the cursor to the top-left corner (home) of the terminal.
Implementation
void home() {
backend.write('\x1b[H');
}
Moves the cursor to the top-left corner (home) of the terminal.
void home() {
backend.write('\x1b[H');
}