mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 02:39:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			158 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			158 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
type
 | 
						|
   tarraysingle = array[0..1] of single;
 | 
						|
 | 
						|
procedure test(var a : tarraysingle);
 | 
						|
 | 
						|
var   
 | 
						|
   i,j,k : integer;
 | 
						|
 | 
						|
begin
 | 
						|
   a[i]:=a[j]-a[k];
 | 
						|
end;
 | 
						|
 | 
						|
begin
 | 
						|
end.
 | 
						|
 |