Function Pi : Real;
Pi returns the value of Pi (3.1415926535897932385).
None.
Cos, Sin
Program Example47; { Program to demonstrate the Pi function. } begin Writeln (Pi); {3.1415926} Writeln (Sin(Pi)); end.