Miklos Cserzo wrote:
Now the question: what is the compiler switch for interpreting character escape sequences? (Like '\t' for tab, '\n' for new line etc..) The {$E+} directive or the --char-escapes switch does not seems to work.
Double quote the strings (gpc extension, recent I think)
write('\n') -> \n
write("\n") -> identical to writeln
Maurice