Sqr

Calculate the square of a value.

Declaration

Source position: systemh.inc line 971

  function Sqr(l: LongInt) : LongInt;
  function Sqr(l: Int64) : Int64;
  function Sqr(l: QWord) : QWord;
  function Sqr(d: ValReal) : ValReal;

Description

Sqr returns the square of its argument X.

Errors

None.

See also

Name Description
Exp Exponentiate
Ln Calculate logarithm
Sqrt Calculate the square root of a value

Example

Program Example65;
{ Program to demonstrate the Sqr function. }
Var i : Integer;
begin
  For i:=1 to 10 do
    writeln (Sqr(i):3);
end.