mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-10 00:12:43 +02:00
9 lines
161 B
ObjectPascal
9 lines
161 B
ObjectPascal
Program Example62;
|
|
|
|
{ Program to demonstrate the Sin function. }
|
|
|
|
begin
|
|
Writeln (Sin(Pi):0:1); { Prints 0.0 }
|
|
Writeln (Sin(Pi/2):0:1); { Prints 1.0 }
|
|
end.
|