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