This repository has been archived on 2024-12-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-03-10 20:32:51 +03:00

21 lines
414 B
ObjectPascal

// Стандартные CRT-цвета
// Для запуска программы используйте Shift+F9 !!!
uses CRT;
begin
SetWindowTitle('Стандартные CRT-цвета');
for var i:=0 to 15 do
begin
TextBackground(i);
for var j:=0 to 15 do
begin
TextColor(j);
write(' CRT');
end;
writeln;
end;
HideCursor;
TextBackground(0);
TextColor(0);
end.