> On Sep 26, 2019, at 4:46 PM, Jonas Maebe <jonas at freepascal.org> wrote: > > In C, \033 inside a string means "the ASCII character with octal value > 033". In Pascal, \033 instead a string means "\033". Use this instead: > writeln(#&033'[31;1;4mHello'#&033'[0m'); that’s why! thanks. Regards, Ryan Joseph