ex53.pp 281 B

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