I met this problem last night. Had a function, returning a string. That string happened to be the end of both, a sentence and a line. So I needed to write a period plus a carriagereturn/linefeed. My 2 alternatives were:
or
This is very annoying when your output contains 10 or even more of such lines. Therefore I propose a new built-in string equate: $PERL (PEriod -Return - Linefeed) as a user-friendly alternative for CHR$(46, 13, 10).
Code:
CHR$(46) & $CRLF
Code:
CHR$(46, 13, 10)
Comment