fpc/docs/mathex/ex4.pp
2000-07-05 13:19:25 +00:00

10 lines
134 B
ObjectPascal

Program Example4;
{ Program to demonstrate the arsinh function. }
Uses math;
begin
Writeln(arsinh(0));
Writeln(arsinh(1));
end.