tb0107.pp 227 B

123456789101112131415
  1. { Old file: tbs0125.pp }
  2. { wrong colors with DOS CRT unit OK 0.99.6 (PFV) }
  3. uses
  4. crt;
  5. var
  6. i:integer;
  7. begin
  8. clrscr;
  9. textcolor(blue);
  10. writeln('ole');
  11. textcolor(red);
  12. writeln('rasmussen');
  13. writeln(i);
  14. end.