fpc/tests/webtbs/tw8076.pp
Jonas Maebe d9c64ed3c1 + (interactive) test for mantis #8076
git-svn-id: trunk@15242 -
2010-05-08 11:31:00 +00:00

17 lines
229 B
ObjectPascal

{ %interactive }
{ should fill the rightmost column of the window with a yellow bar }
uses crt;
var
i: longint;
begin
for i := 1 to SCREENHEIGHT do
begin
textbackground(YELLOW);
gotoxy(SCREENWIDTH, i);
write(' ');
end;
end.