mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 01:51:49 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			216 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			216 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example1;
 | |
| 
 | |
| Uses strings;
 | |
| 
 | |
| { Program to demonstrate the StrLen function. }
 | |
| 
 | |
| Const P : PChar = 'This is a constant pchar string';
 | |
| 
 | |
| begin
 | |
|   Writeln ('P         : ',p);
 | |
|   Writeln ('length(P) : ',StrLen(P));
 | |
| end.
 | 
