From Clomosy Docs

The sqr function returns the square of a number. The number may be an integer or floating point type.

Example
In practice, a float variable is squared.

 var
  I,sqrI : float;
 
 {
 
  I = 4.5;
  sqrI= Sqr(I);
  ShowMessage('Sqr ('+FloatToStr(I)+'):'+FloatToStr(sqrI));
 
 }

Output:

See Also