So I have been trying out different ways to represent information in the console and I have noticed printing \b
doesn't remove newlines in the console.
Here is an example:
System.out.println("ggg");
System.out.print("\b\b\b\b\b\b\b\b\b\b\b\b");
shows up as ggg
.
Is there a way to make this work?