mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 17:12:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			169 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			169 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example15;
 | |
| 
 | |
| { Program to demonstrate the Delete function. }
 | |
| 
 | |
| Var 
 | |
|   S : String;
 | |
| 
 | |
| begin
 | |
|   S:='This is not easy !';
 | |
|   Delete (S,9,4); { S:='This is easy !' }
 | |
| end.
 | 
