summaryrefslogtreecommitdiff
path: root/fpcdocs/sysutex/ex77.pp
blob: 4f423fd9d459aa2e4937b3a122423db2dea36b1f (plain)
1
2
3
4
5
6
7
8
9
Program Example77;

{ This program demonstrates the LowerCase function }

Uses sysutils;

Begin
  Writeln (LowerCase('THIS WILL COME out all LoWeRcAsE !'));
End.