fpc/docs/refex/ex47.pp
1998-03-25 11:26:49 +00:00

9 lines
133 B
ObjectPascal

Program Example47;
{ Program to demonstrate the Pi function. }
begin
Writeln (Pi); {3.1415926}
Writeln (Sin(Pi));
end.