| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Calculate the square of a value.
Source position: systemh.inc line 883
| function Sqr( | 
| l: LongInt | 
| ):LongInt; | 
| l: Int64 | 
| ):Int64; | 
| l: QWord | 
| ):QWord; | 
| d: ValReal | 
| ):ValReal; | 
Sqr returns the square of its argument X.
None.
| 
 | Calculate the square root of a value | |
| 
 | Calculate logarithm | |
| 
 | Exponentiate | 
Program Example65; { Program to demonstrate the Sqr function. } Var i : Integer; begin For i:=1 to 10 do writeln (Sqr(i):3); end.