mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 09:11:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			249 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			249 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example74;
 | |
| 
 | |
| { Program to demonstrate the Val function. }
 | |
| Var I, Code : Integer;
 | |
| 
 | |
| begin
 | |
|   Val (ParamStr (1),I,Code);
 | |
|   If Code<>0 then 
 | |
|     Writeln ('Error at position ',code,' : ',Paramstr(1)[Code])
 | |
|   else
 | |
|     Writeln ('Value : ',I);  
 | |
| end.
 | 
