clearLines method
Deletes lines that were previously printed to the console.
console.clearLines(3);
This will delete the last 3 lines that were printed to the console.
Implementation
void clearLines(int count) {
for (int _ = 0; _ < count; _++) {
clear(ConsoleClear.line);
}
}