mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 22:11:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			197 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			197 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example62;
 | |
| 
 | |
| { This program demonstrates the AppendStr function }
 | |
| 
 | |
| Uses sysutils;
 | |
| 
 | |
| Var S : AnsiString;
 | |
| 
 | |
| Begin
 | |
|   S:='This is an ';
 | |
|   AppendStr(S,'AnsiString');
 | |
|   Writeln ('S = "',S,'"');
 | |
| End. | 
