mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 02:11:30 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			106 B
		
	
	
	
		
			ObjectPascal
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			106 B
		
	
	
	
		
			ObjectPascal
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env instantfpc
 | |
| var
 | |
|   i: Integer;
 | |
| begin
 | |
|   for i:=0 to ParamCount do writeln(ParamStr(i));
 | |
| end.
 | |
| 
 | 
