mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-18 14:59:29 +02:00
13 lines
229 B
ObjectPascal
13 lines
229 B
ObjectPascal
Program Example73;
|
|
|
|
{ Program to demonstrate the Lowercase function. }
|
|
|
|
Var I : Longint;
|
|
|
|
begin
|
|
For i:=ord('A') to ord('Z') do
|
|
write (lowercase(chr(i)));
|
|
Writeln;
|
|
Writeln (Lowercase('ABCDEFGHIJKLMNOPQRSTUVWXYZ'));
|
|
end.
|