mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 03:19:47 +01: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.
 |