fpc/tests/tbs/tb0107.pp
yury f96b571e38 * skip some tests for wince.
git-svn-id: trunk@4110 -
2006-07-06 19:08:23 +00:00

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.