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