mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 20:31:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			251 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			251 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example46;
 | |
| 
 | |
| { Program to demonstrate the ParamCount and ParamStr functions. }
 | |
| Var 
 | |
|   I : Longint;
 | |
|   
 | |
| begin
 | |
|   Writeln (paramstr(0),' : Got ',ParamCount,' command-line parameters: ');
 | |
|   For i:=1 to ParamCount do
 | |
|     Writeln (ParamStr (i));
 | |
| end.
 | 
