mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 07:43:04 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			289 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			289 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{ %version=1.1 }
 | 
						|
{ %opt=-Seh -vh }
 | 
						|
 | 
						|
{ Source provided for Free Pascal Bug Report 2351 }
 | 
						|
{ Submitted by "Sergey Kosarevsky" on  2003-02-02 }
 | 
						|
{ e-mail: netsurfer@au.ru }
 | 
						|
 | 
						|
{$mode objfpc}
 | 
						|
 | 
						|
Procedure DefaultParam(Param:String='10');
 | 
						|
Begin
 | 
						|
   WriteLn(Param);
 | 
						|
End;
 | 
						|
 | 
						|
Begin
 | 
						|
   DefaultParam();
 | 
						|
End.
 |