mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 05:22:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			352 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			352 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{ from GPC test suite }
 | 
						|
 | 
						|
Program fjf7;
 | 
						|
 | 
						|
Var
 | 
						|
  S: String [ 80 ];
 | 
						|
  astr: ansistring;
 | 
						|
 | 
						|
begin
 | 
						|
  WriteStr ( astr, '' : 5, 'OKabcdf' : 7 );
 | 
						|
  if (length ( astr ) <> 5 + 7) or
 | 
						|
     (copy(astr,6,2) <> 'OK') then
 | 
						|
    halt(1);
 | 
						|
 | 
						|
  WriteStr ( S, '' : 5, 'OKabcdf' : 7 );
 | 
						|
  if length ( S ) = 5 + 7 then
 | 
						|
    halt(ord(copy(S,6,2) <> 'OK'))
 | 
						|
  else
 | 
						|
    halt(1);
 | 
						|
end.
 | 
						|
 |