mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 02:51:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			169 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			169 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example85;
 | |
| 
 | |
| { Program to demonstrate the SetLength function. }
 | |
| 
 | |
| Var S : String;
 | |
| 
 | |
| begin
 | |
|   FillChar(S[1],100,#32);
 | |
|   Setlength(S,100);
 | |
|   Writeln ('"',S,'"');
 | |
| end.
 | 
