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

58 lines
846 B
ObjectPascal

{ %skiptarget=wince }
uses
crt;
begin
textcolor(blue);
writeln('blue');
textcolor(green);
writeln('green');
textcolor(cyan);
writeln('cyan');
textcolor(red);
writeln('red');
textcolor(magenta);
writeln('magenta');
textcolor(brown);
writeln('brown');
textcolor(lightgray);
writeln('lightgray');
textcolor(darkgray);
writeln('darkgray');
textcolor(lightblue);
writeln('lightblue');
textcolor(lightgreen);
writeln('lightgreen');
textcolor(lightcyan);
writeln('lightcyan');
textcolor(lightred);
writeln('lightred');
textcolor(lightmagenta);
writeln('lightmagenta');
textcolor(yellow);
writeln('yellow');
textcolor(white);
writeln('white');
textcolor(white+blink);
writeln('white blinking');
textcolor(lightgray);
writeln;
end.