mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-07 20:52:30 +02:00
17 lines
281 B
ObjectPascal
17 lines
281 B
ObjectPascal
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. |