the \b "bakspace in perl doesn't works when we use it at the last of the string.
Eg: If we see the code, i have written
print "Hello\n";
print "Hello\n";
print "\bHe\bllo\b";
It gives me this output:
Hello Hello Hllo
So should the highlighted oo be deleted or in case, the \n would have been deleted taking the control to the 2nd line?