mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 14:49:27 +02:00
17 lines
278 B
ObjectPascal
17 lines
278 B
ObjectPascal
Program Example59;
|
|
|
|
{ This program demonstrates the AnsiStrLower function }
|
|
|
|
Uses sysutils;
|
|
|
|
Procedure Testit (S : Pchar);
|
|
|
|
begin
|
|
Writeln (S,' -> ',AnsiStrLower(S))
|
|
end;
|
|
|
|
Begin
|
|
Testit('AN UPPERCASE STRING');
|
|
Testit('Some mixed STring');
|
|
Testit('a lowercase string');
|
|
End. |