I wish to print the tab character with the format
function. I can achieve this with ~C
and then placing #\tab
as an argument to format, but this seems a bit verbose as for a newline one can simply place a ~%
in the string.
- What is the most commonly used practise for printing tabs with the
format
function?
Thanks for all the help!