mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 12:11:34 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			194 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			194 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example33;
 | |
| 
 | |
| { Program to demonstrate the Insert function. }
 | |
| 
 | |
| Var S : String;
 | |
| 
 | |
| begin
 | |
|   S:='Free Pascal is difficult to use !';
 | |
|   Insert ('NOT ',S,pos('difficult',S));
 | |
|   writeln (s);
 | |
| end.
 | 
