mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 04:22:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			126 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			126 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
#!/usr/bin/env instantfpc
 | 
						|
{$mode objfpc}{$H+}
 | 
						|
var
 | 
						|
  i: Integer;
 | 
						|
begin
 | 
						|
  for i:=0 to ParamCount do writeln(ParamStr(i));
 | 
						|
end.
 | 
						|
 |