mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-16 19:39:33 +02:00
16 lines
227 B
ObjectPascal
16 lines
227 B
ObjectPascal
{ Old file: tbs0125.pp }
|
|
{ wrong colors with DOS CRT unit OK 0.99.6 (PFV) }
|
|
|
|
uses
|
|
crt;
|
|
var
|
|
i:integer;
|
|
begin
|
|
clrscr;
|
|
textcolor(blue);
|
|
writeln('ole');
|
|
textcolor(red);
|
|
writeln('rasmussen');
|
|
writeln(i);
|
|
end.
|