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