ex13.pp 417 B

123456789101112131415
  1. Program Example13;
  2. uses Crt;
  3. { Program to demonstrate the TextBackground function. }
  4. begin
  5. TextColor(White);
  6. WriteLn('This is written in with the default background color');
  7. TextBackground(Green);
  8. WriteLn('This is written in with a Green background');
  9. TextBackground(Brown);
  10. WriteLn('This is written in with a Brown background');
  11. TextBackground(Black);
  12. WriteLn('Back with a black background');
  13. end.