mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-27 07:30:13 +02:00
10 lines
134 B
ObjectPascal
10 lines
134 B
ObjectPascal
Program Example4;
|
|
|
|
{ Program to demonstrate the arsinh function. }
|
|
|
|
Uses math;
|
|
|
|
begin
|
|
Writeln(arsinh(0));
|
|
Writeln(arsinh(1));
|
|
end. |