mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 12:59:26 +02:00
9 lines
133 B
ObjectPascal
9 lines
133 B
ObjectPascal
Program Example47;
|
|
|
|
{ Program to demonstrate the Pi function. }
|
|
|
|
begin
|
|
Writeln (Pi); {3.1415926}
|
|
Writeln (Sin(Pi));
|
|
end.
|