mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 17:31:42 +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.
 | 
