Skip to content

Instantly share code, notes, and snippets.

@mmasias
Last active December 21, 2023 09:02
Show Gist options
  • Save mmasias/3b9ea7f98e604060445ae0a273f9718c to your computer and use it in GitHub Desktop.
Save mmasias/3b9ea7f98e604060445ae0a273f9718c to your computer and use it in GitHub Desktop.
Método estático para limpiar la consola
static void cleanScreen() {
System.out.print("\033[H\033[2J");
System.out.flush();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment