summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/webtbs/tw8076.pp
blob: bc1fcc53a128412d6a2d1b6fe401927f0c92f2e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ %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.