fpc/docs/mathex/ex5.pp
2000-07-06 12:36:10 +00:00

10 lines
136 B
ObjectPascal

Program Example5;
{ Program to demonstrate the artanh function. }
Uses math;
begin
Writeln(artanh(0));
Writeln(artanh(0.5));
end.