eol-directive = $EOL ( CR | LF | CRLF ) .
Defines behavior for end of line in a WRITELN statement.
CR puts only a ($0D) character, LF only a ($0A) character and CRLF (default) puts a CR and LF pair ($0D-$0A).
If this directive is present before a USES statement, it propagates to the used units.
Note: For READLN, CR only matters and LF characters are ignored.
{$EOL CR }