mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 10:18:22 +02:00
17 lines
229 B
ObjectPascal
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.
|