mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 13:51:54 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			169 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			169 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example10;
 | |
| 
 | |
| { Program to demonstrate the Concat function. }
 | |
| Var 
 | |
|   S : String;
 | |
|   
 | |
| begin
 | |
|   S:=Concat('This can be done',' Easier ','with the + operator !');
 | |
| end.
 | 
