home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex73.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  229 b   |  13 lines

  1. Program Example73;
  2.  
  3. { Program to demonstrate the Lowercase function. }
  4.  
  5. Var I : Longint;
  6.  
  7. begin
  8.   For i:=ord('A') to ord('Z') do
  9.     write (lowercase(chr(i)));
  10.   Writeln;
  11.   Writeln (Lowercase('ABCDEFGHIJKLMNOPQRSTUVWXYZ'));
  12. end.
  13.