Correct me if I'm wrong here but \b is supposed to remove the last letter in a string like \n is supposed to go to a new line.
For what ever reason \b is not backspacing but instead my a character ""
heres my code:
System.out.print("This is a test.\b\n");
what i expect the out print to be is
but instead i get:This is a test
This is a test.
I don't really see what I am doing wrong here.