mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 02:39:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			179 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			179 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{$mode delphi}
 | 
						|
 | 
						|
uses
 | 
						|
  SysUtils;
 | 
						|
 | 
						|
var
 | 
						|
  a:array of integer;
 | 
						|
begin
 | 
						|
  a := nil;
 | 
						|
  SetLength(a,3);
 | 
						|
  a[0] := 0;
 | 
						|
  a[1] := 1;
 | 
						|
  a[2] := 2;
 | 
						|
  WriteLn(IntToStr(a[0]));
 | 
						|
  a := nil;
 | 
						|
end.
 |