mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 13:39:39 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			190 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			190 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
Program Example30;
 | 
						|
 | 
						|
{ Program to demonstrate the Halt function. }
 | 
						|
 | 
						|
begin
 | 
						|
 Writeln ('Before Halt.');
 | 
						|
 Halt (1); { Stop with exit code 1 }
 | 
						|
 Writeln ('After Halt doesn''t get executed.');
 | 
						|
end.
 |