mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 01:49:30 +02:00
10 lines
136 B
ObjectPascal
10 lines
136 B
ObjectPascal
Program Example5;
|
|
|
|
{ Program to demonstrate the artanh function. }
|
|
|
|
Uses math;
|
|
|
|
begin
|
|
Writeln(artanh(0));
|
|
Writeln(artanh(0.5));
|
|
end. |