TIL
- C does not support function overloading
- the \v vertical tab character is kind of the equivalent of starting a new line and then indenting to the end of the previous line
@derickflorian that's LF (\n); as I understand it, VT is like LF but can go down several lines, depending on how you've set up the vertical tab stops in your teletype
@radehi Here is what happened when I tried it just now. It goes down and over for me.
I can't say when I would need this except for formatting poetry on the command line. :)
@derickflorian yeah, is the same thing \n does if your terminal is not configured to convert it to \r\n. \v is basically unused nowadays but in its day would move the printer down to the next printable line on the forms you were printing on
@radehi oh, ok. Thank you for the background. The book I’m reading just said that \r\n is on Windows and \n is linux so I didn’t know the history or the behind the scenes on how it works!
It makes sense that a new line would not go to beginning if there isn’t a carriage return though.