ex59.pp 278 B

1234567891011121314151617
  1. Program Example59;
  2. { This program demonstrates the AnsiStrLower function }
  3. Uses sysutils;
  4. Procedure Testit (S : Pchar);
  5. begin
  6. Writeln (S,' -> ',AnsiStrLower(S))
  7. end;
  8. Begin
  9. Testit('AN UPPERCASE STRING');
  10. Testit('Some mixed STring');
  11. Testit('a lowercase string');
  12. End.