mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-10-31 20:31:51 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			142 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			142 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
| Program Example65;
 | |
| 
 | |
| { Program to demonstrate the Sqr function. }
 | |
| Var i : Integer;
 | |
|     
 | |
| begin
 | |
|   For i:=1 to 10 do
 | |
|     writeln (Sqr(i):3);
 | |
| end.
 | 
