mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 02:39:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			160 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			160 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{ %VERSION=1.1 }
 | 
						|
 | 
						|
program tinivar;
 | 
						|
 | 
						|
procedure p1;
 | 
						|
var
 | 
						|
  a : integer = 1;
 | 
						|
begin
 | 
						|
  writeln(a);
 | 
						|
  if a<>1 then
 | 
						|
    halt(1);
 | 
						|
  inc(a);
 | 
						|
end;
 | 
						|
 | 
						|
begin
 | 
						|
  p1;
 | 
						|
  p1;
 | 
						|
end.
 |