mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 06:08:22 +02:00
18 lines
250 B
ObjectPascal
18 lines
250 B
ObjectPascal
{ Old file: tbs0125.pp }
|
|
{ wrong colors with DOS CRT unit OK 0.99.6 (PFV) }
|
|
|
|
{ %skiptarget=wince }
|
|
|
|
uses
|
|
crt;
|
|
var
|
|
i:integer;
|
|
begin
|
|
clrscr;
|
|
textcolor(blue);
|
|
writeln('ole');
|
|
textcolor(red);
|
|
writeln('rasmussen');
|
|
writeln(i);
|
|
end.
|